how to check the 3rd max salary from an employee table?
Answer Posted / b.v.siva kumar
Use this for SQL Server:
select top 1 salary from emp where salary in (select
distinct top 3 salary from emp order by salary desc) order
by salary
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
define sql insert statement ? : Sql dba
Is primary key clustered index?
what is bcp? When does it used? : Sql dba
how to start mysql server? : Sql dba
Is primary key always clustered index?
how many tables will create when we create table, what are they? : Sql dba
What is your daily office routine?
What is the current version of postgresql?
Does group by remove duplicates?
How do I remove duplicates in two columns?
What is the best sql course?
what is collation? : Sql dba
what is sql server agent? : Sql dba
Do we need to rebuild index after truncate?
how to escape special characters in sql statements? : Sql dba