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)

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

相关文章:

  • 2021-05-28
猜你喜欢
  • 2021-06-05
  • 2021-05-27
  • 2022-12-23
  • 2021-06-17
  • 2021-11-16
相关资源
相似解决方案