Oracle paging SQL

Source: Internet
Author: User

During the project transformation, the paging data written by the original colleague is to query all records from the database and then to the paging data. Now, the paging data is transformed to dynamically querying the split pages and the number of records.

// Query 100th to 199th records

Select * from (select B. *, rownumber rn from (select * from a) B where B. Rn> = 100) Where rn <= 199

 

From the preceding Query format, the number of records in the middle of the Oracle table must be nested with at least three subqueries. If it is connected to other tables, the last join query can be viewed as Table. The slower the query is.

The Performance Comparison Between the paging of the Oracle stored procedure and the paging of the SQL script will be provided later.

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.