find out the third highest salary?
Answer Posted / chandiran
select * from (select sal, rownum r from Employee
order by sal desc)
where r=3
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How to calculate date and time differences in oracle?
Assuming today is Monday, how would you use the DBMS_JOB package to schedule the execution of a given procedure owned by SCOTT to start Wednesday at 9AM and to run subsequently every other day at 2AM.
How do we get field details of a table?
How is it different from a normal table?
How to select an oracle system id (sid)?
Is truncate autocommit in oracle?
How to select some rows from a table in oracle?
How to export data with a field delimiter?
Why is oracle database so popular?
How to assign data of the deleted row to variables?
What is Reduced List of Values?
What is a snapshot in oracle database?
Oracle
What are the built-in functions used for sending Parameters to forms ?
Give the different types of rollback segments.