当前位置 : 主页 > 数据库 > mssql >

SQL查找某一条记录的方法

来源:互联网 收集:自由互联 发布时间:2021-04-05
SQL查找第n条记录的方法: selecttop1*fromtablewhereidnotin(selecttopn-1idfromtable)temptable0 SQL查找第n条开始的m条记录的方法: selecttopm*fromtablewhereidnotin(selecttopn-1idfromtable)temptable0) (注:表中必须有一个
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)

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