Write a query to find second highest salary of an employee.
Answer Posted / cooldude
select max(sal) from Emp where sal < (select max(sal) from
Emp)
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
What is the reports view in oracle sql developer?
What is oracle and pl sql?
What is difference between sql and oracle?
how can you see all indexes defined for a table? : Sql dba
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What is the maximum size of sqlite database?
How does left join work in sql?
What does pl sql developer do?
what does it mean to have quoted_identifier on? : Sql dba
Is join an inner join?
How do you write an inner join query?
What is the current version of sql?
Explain two easy sql optimizations.
Can we insert in sql function?
What is the maximum number of rows in sql table?