Hi
What I want to do is something similar to this:
However it seems that
supersedes the
part of the query. What I want, is to have ALL the records sorted first, and then present the "top ten" of those.
(In MS SQL Server there is a function called TOP, but Oracle does not have one, as far as I know.)
Can anyone help me solve this problem?
Thanks in advance,
Palooka
What I want to do is something similar to this:
Code:
select * from employee
where rownum < 10
order by startdate desc
Code:
rownum
Code:
order by
(In MS SQL Server there is a function called TOP, but Oracle does not have one, as far as I know.)
Can anyone help me solve this problem?
Thanks in advance,
Palooka