● ROWNUM ( 페이징 ) > ORACLE

본문 바로가기

사이트 내 전체검색

뒤로가기 ORACLE

● ROWNUM ( 페이징 )

페이지 정보

작성자 관리자 작성일 23-04-12 13:51 조회 584 댓글 0

본문

01. select * from notice;


2a20cbc5f436bcf113309d0dcf539c4f_1681347335_4025.png
 




02select * from notice where rownum between 1 and 5; //출력

03select * from notice where rownum between 6 and 10; //출력할 내용이 없음

(rownum은 결과를 출력할 때 1부터 시작해야 한다.)


04. select rownum num,notice.* from notice; 


ed1526b43ee7fc05d87057da149c12ba_1706947811_3578.png
 



05. select * from (select rownum num,notice.* from notice) where num between 1 and 5// 1페이지


2a20cbc5f436bcf113309d0dcf539c4f_1681347263_265.png

 


06. select * from (select rownum num,notice.* from notice) where num between 6 and 10// 2페이지 


2a20cbc5f436bcf113309d0dcf539c4f_1681347273_2334.png

추천0 비추천 0

댓글목록 0

등록된 댓글이 없습니다.


Copyright © dancePKT. All rights reserved.
PC 버전으로 보기