sql 조회 표 에서 열 에 따라 정렬 된 임의의 줄 문장

 
select *
from (select t.*,
row_number() over(order by desc) r
from t)
where r <= and r>=

좋은 웹페이지 즐겨찾기