● ROWNUM ( 페이징 )
페이지 정보
본문
01. select * from notice;
02. select * from notice where rownum between 1 and 5; //출력
03. select * from notice where rownum between 6 and 10; //출력할 내용이 없음
(rownum은 결과를 출력할 때 1부터 시작해야 한다.)
04. select rownum num,notice.* from notice;
05. select * from (select rownum num,notice.* from notice) where num between 1 and 5; // 1페이지
06. select * from (select rownum num,notice.* from notice) where num between 6 and 10; // 2페이지
추천0 비추천0
- 이전글● DISTINCT ( 중복된 값 제거 ) 23.04.12
- 다음글● 패턴 연산자 ( like , % ) 23.04.12
댓글목록
등록된 댓글이 없습니다.