Oracle paging Query

Source: Internet
Author: User

-- MySql, paging

-- Select * from biaoming where tiaojian limit num1 (start), num2 (size)

-------- Oracle paging, keyword rownum

----

Select ename, rownum from emp;

Select ename, rownum from (select * from emp );

---- Layer-3 filtering, High Efficiency

Select t2. * from (select t1. *, rownum rn from (select * from emp) t1 where rownum <= 6) t2 where rn> = 4;

-- Layer 1:

-- Select * from emp ..

-- Layer 2:

-- Select * from (first layer) where rownum <= 6 (endNum );

-- Layer 3:

-- Select * from (second layer) where rownum> = 4 (startNum );

-- Query from 7th to 10th people according to the order of employment time

Select t2. * from (select t1. *, rownum rn from (select * from emp order by hiredate) t1 where rownum <= 10) t2 where rn> = 7;

--------------- Merge Query

------ Union

------ Union all

------ Intersect

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.