Find out the 3rd highest salary?
Answer Posted / srijith pillai
This will give you third highest salary
select ename, sal from
(Select name, sal, rownum()Over(Order by sal Desc) rt
FROM emp)
where rt = 3;
| Is This Answer Correct ? | 13 Yes | 19 No |
Post New Answer View All Answers
Cite the differences between execution of triggers and stored procedures?
What is sqlerrd?
What is a column in a table?
What is the use of index in hive?
What is case function?
How does postgresql compare to oracle/db2/ms sql server/informix?
Can we insert delete data in view?
What is the use of primary key?
Can two tables have same primary key?
What is $$ in sql?
What is Materialized View? In What Scenario we Use Materialized View?
Why is nosql good?
Explain spool.
how to convert numeric values to character strings? : Sql dba
What are pl/sql packages?