one field of my table's field is set to 0 for all rows. but i want to update to incremental value by step 1 in a update query.

how can i do that in mysql?

link|improve this question

71% accept rate
To clarify: You are asking how to change an existing data set so it has incrementing numbers? – Pekka Dec 14 '10 at 12:13
no,i add this field recently so it is set to 0 by default and it should not be auto increment for feature.i just want to fill it with valid data.hope i could clarify it. – hd. Dec 14 '10 at 12:16
feedback

2 Answers

up vote 4 down vote accepted

Try this:

mysql> select @i := 0;
mysql> update bar set c = (select @i := @i + 1);
link|improve this answer
wowwwwwwwwwwwwwwwwww,thanks you are brilliant !!! – hd. Dec 14 '10 at 12:23
feedback

One way is to create a new table with an AUTO_INCREMENT column instead of the original column, inserting all data from the old into the new table, and then renaming the new and deleting the old.

Another way is to run your update query with a MySQL variable that generates an increasing number for each row (to emulate the ROW_NUMBER() function found in other DBMS systems).

link|improve this answer
as i remember i did it before using mysql variables but i don't remember the solution at this time. ;( – hd. Dec 14 '10 at 12:19
feedback

Your Answer

 
or
required, but never shown

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