I have one table that contain lots of records and I want to update my primary key by row number. My database is MySQL.

link|improve this question

44% accept rate
2  
What is your question? What does your primary key look like right now? What does it contain right now? – Pekka Sep 10 '10 at 12:13
Do you run this update everytime you add a new row or delete a row? – Sachin Shanbhag Sep 10 '10 at 12:16
feedback

2 Answers

up vote 4 down vote accepted

You shouldn't do that.
There is not a thing called "row number" in the database.
Such a number can be applicable only to output of certainly ordered and filtered data, but not to stored one.

Leave your primary key alone, it identifies the whole record, not it's "position" (especially because there is no position at all).

Why do you need that? Your task has another solution for sure, a proper one

link|improve this answer
feedback

mysql isnt oracle and doesnt support rownum

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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