Jump to content

how can i update many different rows


andre3

Recommended Posts

Hi guys, whats the easiest way to update many different rows inside a  table with one query,  for example; i have a table called site_pages with id, name, position and there are 4 rows in there with is 1, 2 , 3 , 4, and i need to update all row id  +  1.. how wud i do that? i tried using a while loop with a update statement inside it, but it update all the rows with the same number....  :-\

Link to comment
Share on other sites

Instead of doing a SELECT statement and then iterating through it with a loop, simply run the following sql command:

 

mysql_query("UPDATE site_pages SET id = (id + 1)");

 

If this is a primary key column, you may have to alter the table so that it is not a primary key temporarily while you run this query as it may produce duplicate keys thereby violating the primary key unique rule. Hope this helps!!!

Link to comment
Share on other sites

NEVER executre queries inside a loop - its the most horrible thing - simply highlights the lack of thought that has gone into someones 'code'.

 

well,, maybe not 'never',, there are some rare occasions, but for the most part,, ya your right ToonMariner lol.

Link to comment
Share on other sites

i think i am getting somewher now,  one question, is there a way that i can change

 

the id value  thats into the bracked it a variable? reason is that when i run the script its updating all id numbrs uniquely but it updates them with the last id number example, if the last id number is 100 it adds that number to ever other id when the script runs, an i just need it to add a extra 1 to each id number each time.

 

example; ($originalposition + 1)

 

mysql_query("UPDATE site_pages SET id = (id + 1)");

 

?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.