1. 페이지 단위로 조회

 

SELECT   r.*, r.rnum as no    
FROM (
  SELECT         
          row_number () OVER(ORDER BY a.userid, a.user_nm  ASC  )  AS RNUM
   from (select '1' userid, 'asdf' user_nm from dual) a
 ) r    
WHERE CEIL(RNUM/100) = 1
;

 

CEIL(RNUM/100) = 1    -  100건씩 1페이지

CEIL(RNUM/100) = 2    -  100건씩 2페이지

'DataBase > Sql' 카테고리의 다른 글

[Sql] MySql - mysql table, field별 권한 설절  (0) 2013.01.24
[Sql] 시노님 작업 참고  (1) 2012.11.30
[Sql] Trunc  (0) 2012.11.22
[Oracle] update where  (0) 2012.11.12
[Sql] 행을 열로 표시  (0) 2012.04.25

+ Recent posts