select * from (select *,ROW_NUMBER() OVER(ORDER BY(SELECT 0)) AS Rownum from employee) as table1 where table1.rownum >= 1 and table1.rownum <= 3
转载于:https://www.cnblogs.com/yzw-carrie/p/5543158.html
select * from (select *,ROW_NUMBER() OVER(ORDER BY(SELECT 0)) AS Rownum from employee) as table1 where table1.rownum >= 1 and table1.rownum <= 3
转载于:https://www.cnblogs.com/yzw-carrie/p/5543158.html