Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I add auto_increment to an existing column of a MySQL table?

I don't want to add a new column, just change an existing one to have auto_increment.

share|improve this question

1 Answer

up vote 16 down vote accepted

I think you want to MODIFY the column as described for the ALTER TABLE command. It might be something like this:

ALTER TABLE t1 MODIFY b INTEGER NOT NULL AUTO_INCREMENT;
share|improve this answer
2  
Might also want to include the current column value as an offset, eg ALTER TABLE tbl AUTO_INCREMENT = 100; – Phil Feb 17 '11 at 23:20
3  
If you already have values in the table, you'll probably get a duplicate key error for value of 1. To change the value of the AUTO_INCREMENT the table must be using the MyISAM engine. So go to the table properties, change the engine from say InnoDB to MyISAM, then change the AUTO_INCREMENT value to whatever should be next in your sequence. Once you apply those changes you can switch the engine back to whatever you where using. – sday Oct 1 '11 at 2:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.