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.

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.

share|improve this question
2  
You can easily do the alter table to 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
@MarcB I just tested, and it did in fact insert the ids for existing rows starting at 1 – Michael Berkowski Jan 30 '12 at 21:09

2 Answers

up vote 20 down vote accepted

An ALTER TABLE statement adding the PK column seems to work in my testing:

ALTER TABLE tbl ADD id INT PRIMARY KEY AUTO_INCREMENT;

On a temporary table of my own, the above statement created the AUTO_INCREMENT id column and inserted auto-increment values for each existing row, starting with 1.

share|improve this answer
Yep, this has been my experience. Never remember having to run a separate script to populate auto_increment ids... – Mike Purcell Jan 30 '12 at 21:11
Thanks Michael, but I need to insert id to the column automatically into my existing DB. Grigor's solution is closer to what I need. Thanks though. +1 – FlyingCat Jan 30 '12 at 21:20
1  
@Jerry That's exactly what this does. One ALTER TABLE statement is all you need to add the id column and populate it with auto-incremented values. – Michael Berkowski Jan 30 '12 at 21:23
1  
lol..Thanks. my bad. The green mark is for you since yours is easier to implement then. :D – FlyingCat Jan 30 '12 at 21:24
+1, works in 5.1.51-ndb-7.1.9a-log, on table with engine MyISAM – Radu Maris Aug 28 '12 at 13:16

yes, something like this would do it, might not be the best though, you might wanna make a backup

$get_query = mysql_query("SELECT `any_field` FROM `your_table`");

$auto_increment_id = 1;

while($row = mysql_fetch_assoc($get_query))
{
  $update_query = mysql_query("UPDATE `your_table` SET `auto_increment_id`=$auto_increment_id WHERE `any_field` = '".$row['any_field']."'");
  $auto_increment_id++;
}

notice that the the any_field you select must be the same when updating.

share|improve this answer
good one. Thanks. – FlyingCat Jan 30 '12 at 21:20

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.