sql获取第n条数据

select * 
from (select top n * from students) aa 
where not exists(select * from (select top n-1 * from students) bb where aa.id=bb.id)select

相关文章
相关标签/搜索