-
oracle通过行范围查询取4至10行并排序
不能直接用rownum,要查询出来以后用别名转换。以EMP表为范例,取4至10行:select * from (select rownum id,t.* from emp t) where id between 4 and 10;有需要排
-
oracle通过行范围查询取4至10行
不能直接用rownum,要查询出来以后用别名转换。以EMP表为范例,取4至10行:select * from (select rownum id,t.* from emp t) where id between 4 and 10;有需要排