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

SQL查找某一条记录的方法

程序员文章站 2022-06-11 18:15:40
sql查找第n条记录的方法: select top 1 * from table where id&...
sql查找第n条记录的方法:
select top 1 * from table where id not in (select top n-1 id from table) temptable0

sql查找第n条开始的m条记录的方法:
select top m * from table where id not in (select top n-1 id from table) temptable0)

(注:表中必须有一个唯一值字段才可适用此方法。)