tags:

views:

1399

answers:

1

Hi,

Why does the following query return 'zero' records:

SELECT * FROM records WHERE rownum >= 5 AND rownum <= 10

     OR

SELECT * FROM records WHERE rownum >= 5 

Whereas the following query return proper records:

SELECT * FROM records WHERE rownum <= 15

Regards,
- Ashish

+14  A: 

In Oracle, Rownum values are assigned after the filtering stage of the query - they are not rows of the table, they are rows of the query result set.

So the first row that comes back will always be given rownum 1, the second row that comes back rownum 2, etc.

The rownum value is only incremented after it is assigned, so any query like

select * from t where ROWNUM > 1

will never return any results. This query says 'I dont want to see the first row that gets returned to me, only the ones after that' which is sortof a paradox so nothing gets returned.

See Ask Tom:On ROWNUM and Limiting Results for more details.

codeulike
Is it possible to access the rownum of a subquery within a larger query? I suspect that might be what the original question is after.
Greg Hewgill
Ah, I see Tom explains that in the article you linked, in the "Pagination with ROWNUM" section. Great link!
Greg Hewgill
Hmm !! and I thought I could use 'rownum' to filter out any subset of records. That was a real detailed and informative answer - thanks 'codeulike' for your help.
Vinnie
Embarassingly, all I did was google it and write a summary - I work with MS-SQL, not Oracle. But this is now my highest voted answer : ) thanks!
codeulike