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)

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

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/233442.html

(0)
上一篇 2022年1月23日
下一篇 2022年1月23日

相关推荐

发表回复

登录后才能评论