How to query the previous and next records of the current data in MySQL

Source: Internet
Author: User

If the ID is a primary key or has an index, you can find it directly:

Method One:

Query the SQL statement for the previous record (if you have additional query criteria, remember to add other_conditions to avoid unnecessary errors):

SELECT * from table_a WHERE id = (SELECT id from table_a where ID < {$id} [and Other_conditions ] ORDER BY id DESC limit 1) [and other_conditions];

Query the SQL statement for the next record (if you have additional query criteria remember to add other_conditions to avoid unnecessary errors):

SELECT * from table_a WHERE id = (SELECT id from table_a where ID > {$id} [and Other_conditions ] ORDER BY ID ASC limit 1) [and other_conditions];
Method Two:

Query the SQL statement for the previous record (if there are other query conditions remember to add other_conditions to avoid unnecessary errors))

SELECT * from table_a where id = (the Select max (ID) from table_a where ID < {$id} [and Other_conditions]) [and other_conditions];

Query the SQL statement for the next record (if you have additional query criteria remember to add other_conditions to avoid unnecessary errors):

SELECT * from table_a where id = (the select min (id) from table_a where ID > {$id} [and Other_condi tions]) [and other_conditions];

How to query the previous and next records of the current data in MySQL

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.