sql 根據rownum分頁

select * from (select ROW_NUMBER() over (order by Location.id asc ) as rownum,* from Location) as L where L.rownum between 1 and 10 相當於創一個臨時表,先將其排序,然後根據rownum列分頁 如下: 結果:
相關文章
相關標籤/搜索