질문 다시.. --;
현재 상황
id 고유 id
paperdate 날짜.. (date type 임)
title 제목..
select id,paperdate,title from TABLE where to_char(paperdate) = '03-MAR-95';
의 결과에서 rownum 이 10-20 인넘들만 보여주고 싶습니다. 그래서 한것이
select id, paperdate, title from TABLE
where to_char(paperdate) = '03-MAR-95' and rownum between 10 and 20;
으로 했지요. 그랬더니 결과가 안나오더군요. 먼가 제가 잘못한 것이
있는것 같은데 먼지 모르겠습니다. :-) 조언을...
select id, paperdate, title from TABLE
where to_char(paperdate) = '03-MAR-95' and rownum between 0 and 20;
으로 하면 결과값이 제대로 나오더군요.
|