how to find the second highest salary from emp table?
Answer Posted / moharaj m
select max(salary) from emp where salary < (select max
(salary) from emp)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can you inner join the same table?
What is the reports view in oracle sql developer?
Can we create a trigger on view?
how to escape special characters in sql statements? : Sql dba
Does sap use sql?
Is clustered index a primary key?
What is microsoft t sql?
Can I learn sql in a week?
Why is the cursor important?
What is sql profiler in oracle?
How do I run a query in pl sql developer?
how to fetch alternate records from a table? : Sql dba
what is 'mysqlimport'? : Sql dba
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
What is the difference between delete and truncate statement in sql?