Find out the 3rd highest salary?
Answer Posted / virendra
select ename, salary from emp where salary=(select top 1
salary from (select distinct top 3 salary from emp order
by salary desc) a order by salary)
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
Why is the cursor important?
What is meant by user defined function?
What is a composite primary key?
Why is sql better than hql?
What is difference between table and view?
How do I copy a table in sql?
What is the execution plan in sql?
What is pl sql in dbms?
How many commands are there in sql?
Mention what does the hierarchical profiler does?
What is structural independence and why is it important?
How does sql*loader handles newline characters in a record? : aql loader
how to load data files into tables with 'mysqlimport'? : Sql dba
Is inner join same as self join?
How long will it take to learn pl sql?