标签:
select * from (select *,row_number() over(order by createon desc) as rownum from AKCatLog ) as t where t.rownum between 0 and 10
select * from AKCatLog order by createon desc offset 0 rows fetch next 10 rows only
标签:
原文地址:http://www.cnblogs.com/lemeng/p/4808196.html