400-1100-266
9:00-24:00(工作日)
不能直接用rownum,要查询出来以后用别名转换。
以EMP表为范例,取4至10行:
select * from (select rownum id,t.* from emp t) where id between 4 and 10;
有需要排序的,一定要这样处理:
select * from ( select rownum rn,t.* from ( select a.* from eba02 a order by eba003) t where rownum = 110) where rn >= 110;
标签:湖南 崇左 衡水 仙桃 兰州 黄山 铜川 湘潭
上一篇:oracle使用instr或like方法判断是否包含字符串
下一篇:oracle 11g 设置用户密码大小写敏感测试