各種資料庫的分頁查詢語句

2021-08-30 21:45:39 字數 1158 閱讀 3308

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!

1.oracle資料庫分頁select * from (select a.*,rownum rc from 表名 where

rownum

<=endrow) a where a.rc>=startrow 2.db2資料庫分頁select * from (select rownumber() over() as rc,a.* from (select * from 表名 order

by 列名) as a) where rc between startrow and endrow 3.

sqlserver

2000資料庫分頁select top pagesize * from 表名 where 列名 not

in(select top pagesize*page 列名 from  表名 order

by 列名) order

by 列名 4.

sqlserver

2005資料庫分頁select * from (select 列名,row_搜尋number() over(order

by  列名1) as 別名from 表名) as t where t.列名1>=startrow and t.列名1

<=endrow 5.mysql資料庫分頁select * from 表名 limit startrow,pagesize(pagesize為每頁顯示的記錄條數) 6.postgresql資料庫分頁select * from 表名 limit pagesize,offset startrow(pagesize為每頁顯示的記錄條數.) 7.通用模式select * from ( select * from tb_student where

sidnot

in(select

sidfrom tb_student where

rownum

<=(currentpage-1)*pagesize)) where

rownum

<=pagesize;

給我老師的人工智慧教程打call!

各種資料庫的分頁查詢語句

1.oracle資料庫分頁 select from select a.rownum rc from 表名 where rownum endrow a where a.rc startrow 2.db2資料庫分頁 select from select rownumber over as rc,a.fr...

各種資料庫的分頁查詢語句

1.oracle資料庫分頁 select from select a.rownum rc from 表名 where rownum endrow a where a.rc startrow 2.db2資料庫分頁 select from select rownumber over as rc,a.fr...

各種資料庫分頁查詢sql語句

1.oracle資料庫分頁 select from select a.rownum rc from 表名 where rownum endrow a where a.rc startrow 2.db2資料庫分頁 select from select rownumber over as rc,a.fr...