Home  >  Article  >  Database  >  SQL查找某一条记录的方法

SQL查找某一条记录的方法

WBOY
WBOYOriginal
2016-06-07 17:57:071414browse

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)

(注:表中必须有一个唯一值字段才可适用此方法。)
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn