how to find the second highest salary from emp table?
Answer Posted / prashanth
select max(sal) from employee where sal<(select max(sal)
from employee)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to select unique records from a table?
What is constant in pl sql?
what is acid property in database? : Sql dba
Give the order of sql select?
What does the file extension accdb stand for?
What is not in sql?
What is sql comments?
what are the types of join and explain each? : Sql dba
What is latest version of sql?
What packages are available to pl/sql developers?
what are the non-standard sql commands supported by 'mysql'? : Sql dba
Can we group by two columns in sql?
How do I count rows in sql query?
Is it possible to create the following trigger: before or after update trigger for each row?
How to run sql statements with oracle sql developer?