select NE_NO, NE_NAMe
from cf_ne
order by ne_no asc
limit a, b
a = 1 ,b = 10 일때
--------------------------------------------------------------------변환
select * from (select * from (select NE_NO, NE_NAMe
from cf_ne
order by ne_no asc)where rownum < a+b order by ne_no desc)
where rownum < b+1 Order by ne_no
from cf_ne
order by ne_no asc
limit a, b
a = 1 ,b = 10 일때
--------------------------------------------------------------------변환
select * from (select * from (select NE_NO, NE_NAMe
from cf_ne
order by ne_no asc)where rownum < a+b order by ne_no desc)
where rownum < b+1 Order by ne_no
'Work > oracle' 카테고리의 다른 글
오라클 타임 스템프를 이용한 데이터 복구 (0) | 2014.08.28 |
---|---|
오라클 자료형 (0) | 2014.08.28 |
오라클 sysdba 패스워드 분실시 접속 방법 (0) | 2010.11.24 |
오라클 instance client 사용법 (1) | 2010.10.29 |
ORA-01034: ORACLE not available 오류 해결 방법 (0) | 2010.10.21 |