"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Reorder Records in a Table with a Single SQL Query?

How to Reorder Records in a Table with a Single SQL Query?

Published on 2024-11-22
Browse:526

How to Reorder Records in a Table with a Single SQL Query?

Reordering Records with a Single SQL Query

In a table of food items with a "Position" field to order their appearance, a single SQL query can update multiple records based on a change to a single record. This is especially useful for reordering items within a specific list.

Suppose we have a table like this:

idlistIDnameposition
11cheese0
21chips1
31bacon2
41apples3
51pears4
61pie5

To move pears before chips, we can increment the position of all items between them by 1.

However, most solutions involve multiple queries, which can be inefficient. Instead, a single query can be used to reorder the records:

UPDATE my_table
SET position = position   CASE
    WHEN name = 'pears' THEN -3
    ELSE 0
    END
WHERE listID = 1 AND position BETWEEN 1 AND 4;

This formula ensures that pears move to position 1, and all items between pears and chips are incremented accordingly.

To reorder any item, simply replace 'pears' with the name of the item to be moved, and adjust the difference as needed.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3