sql分頁兩方案

2021-05-21 20:39:08 字數 678 閱讀 3324

表中主鍵必須為標識列,[id] int identity (1,1)

1.分頁方案一:(利用not in和select top分頁)

語句形式:

select top 頁記錄數量 *

from 表名

where (id not in

(select top (每頁行數*(頁數-1)) id

from 表名

order by id))

order by id

//自己還可以加上一些查詢條件

例:select top 2 *

from sys_material_type

where (mt_id not in

(select top (2*(3-1)) mt_id from sys_material_type  order by mt_id))

order by mt_id

2.分頁方案二:(利用id大於多少和select top分頁)

語句形式:

select top 每頁記錄數量 *

from 表名

where (id >

(select max(id)

from (select top 每頁行數*頁數 id  from 表

order by id) as t)

)order by id

SQL 常用sql分頁解決方案

分頁方案一 利用not in和select top分頁 語句形式 select top10 from testtable where id notin select top20 idfrom testtable order byid order byid select top頁大小 from tes...

多執行緒 兩方式分析

class mythread extends thread catch interruptedexception e system.out.println mythread running public class threadtest 分析過程 mythread t new mythread 建立...

flex解析xml兩方式

www.diy567.com累了,去上面休息一下下,qq空間,美文,非主流,網路日記,搞笑簡訊,祝福簡訊,熱門簡訊,有意思啊 1.使用httpservice 2.使用urlloader par ml showbusycursor true url brow.xml importmx.collecti...