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
How many parts of a pl sql block are optional?
What are the sql aggregate functions?
What is sql exception?
Why we use join in sql?
How to place comments in pl/sql?
What is the current version of postgresql?
What is full join in sql?
How do I create a memory optimized filegroup?
What is application trigger?
What is a schema sql?
what are the security recommendations while using mysql? : Sql dba
How sql query is executed?
Is it mandatory for the primary key to be given a value when a new record is inserted?
What types of commands can be executed in sql*plus?
What are sql ddl commands?