find out the third highest salary?
Answer Posted / santanu
3rd highest salary:
select max(sal) from emp
where sal < (select max(sal) from emp
where sal < (select max(sal) from emp))
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What the is the diff between local index and global index. give some example.
How to create a stored procedure in oracle?
What is dual table oracle?
What do you understand by a database object?
How to get maxsal , minsal, ename department wise in single query
What happens if the update subquery returns multiple rows?
What is a private synonym?
What is clustered table in Oracle?
How to compare dates in oracle sql?
What is the purpose of save points in oracle database?
How to bring a tablespace offline?
How to write date and time interval literals in oracle?
Can you assign multiple query result rows to a variable?
How to convert numbers to characters in oracle?
Explain the dml?