常見資料庫的分頁實現方案

來源:互聯網
上載者:User

1.Oracle:

 
  1. select * from ( select row_.*, rownum rownum_ from ( query_SQL ) row_ where rownum =< max) where rownum_ >= min 

2.SQL Server:

 
  1. select top @pagesize * from tablename where id not in (select top @pagesize*(@page-1) id from tablename order by id) order by id 

3.MySQL

 
  1. select * from tablename limit position, counter 

4.DB2

 
  1. select * from (select *,rownumber() as ROW_NEXT from tablename) where ROW_NEXT between min and max 
1.分頁方案一:(利用Not In和SELECT TOP分頁)效率次之

語句形式:

 
  1. SELECT TOP 10 * FROM TestTable 
  2. WHERE(ID NOT IN (SELECT TOP 20  id FROM  TestTable  ORDERBY  id))   ORDERBYID 
  3. SELECT  TOP 頁大小 * FROM TestTable 
  4. WHERE( ID NOT IN (SELECT  TOP  每頁大小-1*待查詢頁數-1  id  FROM  表 ORDERBY  id)) ORDERBYID 

思路:先查詢出待查詢頁之前的全部條數的id,查詢ID不在這些ID中的指定數量條數

2.分頁方案二:(利用ID大於多少和SELECT TOP分頁)效率最高

語句形式:

 
  1. SELECT  TOP  10 *   FROM  TestTable 
  2. WHERE(ID>(SELECT MAX(id) FROM(SELECT TOP20 id  FROM  TestTable ORDERBYid)AS T))ORDERBY ID 
  3. SELECT  TOP  頁大小* FROM  TestTable 
  4. WHERE(ID>(SELECT MAX(id) FROM(SELECT TOP 每頁大小*待查詢頁數-1  id FROM 表  ORDERBY id)AS T)) ORDERBY ID 

思路:先獲得待查詢頁的之前全部條數id,獲得它們當中最大的ID號,以此最大ID號為標誌,尋找比這個ID號大的指定條數

3.分頁方案三:
 
  1. SELECT TOP PageSize * FROM(SELECT TOP nPage*PageSize * from YOURTABLE order by id)as a order by id desc 
  2. SELECT TOP 每頁條數 * FROM (SELECT TOP 待查詢頁*每頁條數) * from YOURTABLE order by id)as a order by id desc 

思路:先正排序查詢出待查詢頁之前(包括當前頁)的全部條數,然後將其倒排序,取指定條數


 

相關文章

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.