服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - SQL查找某一条记录的方法

SQL查找某一条记录的方法

2019-10-27 15:56mssql教程网 Sql Server

SQL查找某一条记录的方法

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) 

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

延伸 · 阅读

精彩推荐