I am trying to alter a table which has no primary key nor auto_increment column. I know how to add an primary key column but I was wondering if it's possible to insert data into the primary key column automatically (I already have 500 rows in DB and want to give them id but I don't want to do it manually). Any thoughts? Thanks a lot.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
An
On a temporary table of my own, the above statement created the |
|||||||||||||||
|
|
yes, something like this would do it, might not be the best though, you might wanna make a backup
notice that the the |
|||
|
|
alter tableto add the key, but MySQL won't generate IDs for fields which don't already have them. You'll have to manually update the existing fields and then make sure your new auto_increment starts at the right offset - it defaults to '1' and you'd just end up with duplicate key errors anyways. – Marc B Jan 30 '12 at 21:07