从taba中获取第1到10条记录
select * from ( select row_.*, rownum rownum_ from (
select id,name from table taba
) row_ where rownum <= 10) where rownum_ >= 1)
从taba中获取第1到10条记录
select * from ( select row_.*, rownum rownum_ from (
select id,name from table taba
) row_ where rownum <= 10) where rownum_ >= 1)
1582
814
607

被折叠的 条评论
为什么被折叠?