Hi,
I'm trying to write a query that will reurn a subset of the total results, so at the end of the statement I have a...
and rownum between x and y
If I have x as any value other than 1 though it stops the query bringing back any results. For example
select * from dba_tables where rownum between 2 and 10
Returns nothing
But
select * from dba_tables where rownum between 1 and 10
returns stuff. Any ideas??
I'm trying to write a query that will reurn a subset of the total results, so at the end of the statement I have a...
and rownum between x and y
If I have x as any value other than 1 though it stops the query bringing back any results. For example
select * from dba_tables where rownum between 2 and 10
Returns nothing
But
select * from dba_tables where rownum between 1 and 10
returns stuff. Any ideas??