Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / naresh kumar kalangi
select top 1 * from (select top 2 * from emp order by sal
desc)s order by sal
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
What is a schema? How is it useful in sql servers?
What is the purpose of primary key?
What is procedure explain with program?
What is use of trigger?
What is cte sql?
How is data stored in sql?
What is informix sql?
Define tables and fields in a database
what are the different functions in sorting an array? : Sql dba
How many tables can a sql database have?
What is normalization in a database?
What are the different types of sql commands?
Define sql delete statement.
how to select first 5 records from a table? : Sql dba
What is sql stand for?