Click to See Complete Forum and Search --> : adding auto increment after the table is created


barantamer
03-04-2008, 05:40 AM
hello ,
how can i add auto increment to my already existing column (primary key)?

chazzy
03-04-2008, 07:06 AM
if you do an ALTER TABLE ADD COLUMN something... you can. Otherwise, you can't, as far as I am aware. Maybe CHANGE COLUMN clause can.