find out the third highest salary?
Answer Posted / ruchira
select sal from emp
where sal =
(select sal from
(select distinct sal from emp OrderBy sal desc)
[table alias] where rownum < 4 )
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Explain enable novalidate constraint.
What is an oracle tablespace?
In XIR2 if we lost the administration password .How can we regain the password?thanks in advance.
Is a rollback possible to any savepoint?
What are the original export and import utilities?
Provide an example of a shell script which logs into SQLPLUS as SYS, determines the current date, changes the date format to include minutes & seconds, issues a drop table command, displays the date again, and finally exits.
How to display employee records who gets more salary than the average salary in the department?
How to synchronize 2 schema's objects?
What are the differences between blob and clob in oracle?
What is a trigger oracle?
How to use subqueries in the from clause in oracle?
What is a read write transaction in oracle?
Explain the use of Merge statement in oracle 11g
Explain coalesce function?
How to use "in" parameter properly?