Thread
:
i want to get the third highest salary from a table?
View Single Post
#
8
(
permalink
)
12-05-2007, 11:23 AM
deepak garg
Junior Member
Join Date: Dec 2007
Posts: 6
ANY
answer.
Re: i want to get the third highest salary from a table?
use for any highest salary from the table
[sql]select min(sal) from (select sal from emp where sal is not NULL order by sal desc) where rownum<=&rownum[/sql]
deepak garg
View Public Profile
Send a private message to deepak garg
Find all posts by deepak garg