易网时代-编程资源站
Welcome
首页
/
数据库
/
SQLServer
/
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)
(注:表中必须有一个唯一值字段才可适用此方法。)
版权所有©石家庄振强科技有限公司2024
冀ICP备08103738号-5
网站地图