Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / swapnil tikale
Select top 1 salary from (select distinct top 2 salary from employee order by salary desc) as sal order by salary ;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to create a table index in mysql? : Sql dba
What are the packages in pl sql?
What are stored procedures used for?
What is memory optimized?
What is pls_integer in pl sql?
What is thread join () in threading?
Explain what is table in a database?
what is sp_pkeys? : Transact sql
What is pl sql variable?
How to check if a column is nullable before setting to nullable?
What are sql functions? Describe the different types of sql functions?
How to run pl/sql statements in sql*plus?
Can sql developer connect to db2?
Explain alias in sql?
What is field delimiter?