divide page using SQL

来源:互联网 发布:mac应用程序无法打开 编辑:程序博客网 时间:2024/05/22 05:22

table(key, notkey)

record number each page RN

the page number PN

select top  RN *

from table

where key not in

                        ( select top RN*(PN-1) key

                           from table)

原创粉丝点击