Aug 16, 2006 #1 jmodo Programmer Joined Aug 2, 2006 Messages 43 Location US I need to drop the autonumber on one of my fields via code. Thanks -J
Aug 16, 2006 1 #2 Golom Programmer Joined Sep 1, 2003 Messages 5,595 Location CA You want to get rid of the whole column or just change it's type? Drop the Column Code: ALTER TABLE myTable DROP COLUMN AutoNumCol Change the Type Code: ALTER TABLE myTable ALTER COLUMN AutoNumCol Long Upvote 0 Downvote
You want to get rid of the whole column or just change it's type? Drop the Column Code: ALTER TABLE myTable DROP COLUMN AutoNumCol Change the Type Code: ALTER TABLE myTable ALTER COLUMN AutoNumCol Long