SQL查找某一条记录的方法

编辑: admin 分类: mssql 发布时间: 2022-02-22 来源:互联网
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)

(注:表中必须有一个唯一值字段才可适用此方法。)  【本文由:http://www.1234xp.com/ip.html 提供,感谢支持】 【本文来源:香港将军澳机房 http://www.558idc.com/hk.html 欢迎留下您的宝贵建议】