I want to select the bottom 50,000+ records from a table with 65,000+ records in it. I have used the following:
SELECT *
FROM (select * from ACTIONDATA_TWO) suppliers2
WHERE ROWNUM > 10000
but it doesn't return even one record. How should I go about doing this?
Thanks!!!!