Aug 16, 2006 #1 jmodo Programmer Aug 2, 2006 43 US I need to drop the autonumber on one of my fields via code. Thanks -J
Aug 16, 2006 1 #2 Golom Programmer Sep 1, 2003 5,595 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