Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / varun
select max(sal) from emp ((select sal from emp)-(select max
(sal) from emp))
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
Is sql open source?
Explain the order of sql statement execution?
What is the difference between row level and statement level trigger?
How are functions and procedures called in PL/SQL?
Why use stored procedures?
Why is pl sql used?
What are sql indexes?
Does sql*plus have a pl/sql engine?
Which sql statement is used to delete data from a database?
what is transaction? : Sql dba
Define implicit and explicit cursors.
Is sql better than access?
What are the types of triggers in sql?
what is difference between delete and truncate commands? : Sql dba
What are the uses of merge?