Write a query to find second highest salary of an employee.
Answer Posted / manikumar
Select Sal from Emp where Sal in (Select Max(Sal) from Emp)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
how many sql dml commands are supported by 'mysql'? : Sql dba
how many columns can be used for creating index? : Sql dba
Can we use the cursor's to create the collection in PL/SQL?
Does pl sql work in mysql?
How to select unique records from a table?
How to revise and re-run the last sql command?
What is time based sql injection?
What is sql performance tuning?
what are the non-standard sql commands supported by 'mysql'? : Sql dba
Does view contain data?
Can cursors be part of a trigger body?
Is sql a dbms?
What is application trigger?
Is json a nosql?
Explain about various levels of constraint.