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

相關文章
相關標籤/搜索