Tuesday, May 24, 2022

Query to find the third highest salary

Normally this question is asked check the analytical skills . This is the most commonly asked question the interviews. 


select * from( select ename, sal, dense_rank() over(order by sal desc)r from Employee) where r=3;



Featured Post

Will the data from Oracle Database be lost after formatting the system in which it is installed?

So Someone asked me a question,  Will the data from Oracle Database be lost after formatting the system in which it is installed? Since the ...

Popular Posts