Find out the 3rd highest salary?
Answer Posted / sheik
select top 1 * from(select top 3 *from emp order by salary
desc)d order by salary asc
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between view and stored procedure?
Describe sql comments?
How does cross join work?
Is stored procedure faster than query?
What are all the different normalizations?
What are aggregate functions in sql?
What are the three forms of normalization?
how to shutdown mysql server? : Sql dba
What is the difference between local variables and global variables?
how to shut down the server with 'mysqladmin'? : Sql dba
What is the difference between functions, procedures, and packages in pl/sql?
How do I count rows in sql query?
What can I use instead of union in sql?
how to install mysql? : Sql dba
What is synchronized subquery?