select * from emp
where sal=(select min(sal) from
(select sal from(select distinct sal from emp order by sal desc)
where rownum<=n));
n can be the value you want to see......
you can see all the fields of that person who having nth highest salary*strong text*