首页 > 数据库 > SQL Server > 正文

SQL查找某一条记录的方法

2024-08-31 01:00:16
字体:
来源:转载
供稿:网友
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)

(注:表中必须有一个唯一值字段才可适用此方法。) 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表