欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

从数据表中取出第n条到第m条的记录的方法

程序员文章站 2022-06-24 23:18:48
从publish 表中取出第 n 条到第 m 条的记录: select top m-n+1 * from publish where (id not in      (select top n-1...
从publish 表中取出第 n 条到第 m 条的记录:
select top m-n+1 *
from publish
where (id not in
     (select top n-1 id
     from publish))

id 为publish 表的关键字