I want to retrive record at 4th position in ORACLE 9i. Can I compare ROWNUM=4 in the WHERE clause??
SELECT * FROM ( SELECT mt.mydata FROM myTable mt WHERE mt.myId = xxx ORDER BY mt.myDate DESC ) WHERE ROWNUM <= 10;