The ability to implement Limit m,n in SQL Server

Source: Internet
Author: User

In MySQL and SQLite, you can use the limit to query the record of the nth bar, such as SELECT * FROM MyTable limit 1, 3, but the limit statement is not supported in SQL Server, SQL Server supports top, You can use the nesting of top to achieve the same functionality as limit.

To fetch the first 10 records in the MyTable table, the statements in SQL are as follows: Select top from MyTable

If you want to query the 11th to 18 records in the MyTable table, the statements in SQL are as follows:

Select Top 8 * from Mytalbe where FID not in (select Top ten from mytable);

This statement is equivalent to the SELECT * FROM MyTable limit 10, 8 in SQLite;


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.