Jump to content

[SOLVED] How to change data in the next row from an auto-increment table?


qwerpoiu338

Recommended Posts

Trying to set a marker for a row in an ordered list (Auto-increment table). The marker will be represented with a "1" in the column, the rest will be "0". Once a condition is met, the marker ("1") will move down one position down the ordered list. Maybe there is an easier way. Any suggestion? Thanks in advance!

Link to comment
Share on other sites

fenway:

 

As far as I understand, qwerpoiu338 is trying to move a marker across records in a table, the following table data:

id     | marker | other_fields_in_table_that_are_irrelevant
1      | 0      |
2      | 0      |
3      | 0      |
7      | 1      |
10     | 0      |
14     | 0      |

 

after a marker move would result in the following (The marker moved to the next record):

id     | marker | other_fields_in_table_that_are_irrelevant
1      | 0      |
2      | 0      |
3      | 0      |
7      | 0      |
10     | 1      |
14     | 0      |

 

And no qwerpoiu338, the query I posted would only work on records with NO gaps in the auto increment id.

Link to comment
Share on other sites

This may work accordingly:

 

SELECT @id:=id FROM table WHERE id > ifnull(( SELECT id FROM table WHERE marker = 1 ), 0) ORDER BY id LIMIT 1;
UPDATE table SET marker = 0 WHERE marker = 1;
UPDATE table SET marker = 1 WHERE id = @id;

 

The marker is set to the first record if no marker is present and just stops at the last record ordered by id.

Link to comment
Share on other sites

  • 2 weeks later...
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.