how to find the second highest salary from emp table?
Answer Posted / ashwini
select max(salary) from employee where salary < (select max(salary) from employee)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which are the different character-manipulation functions in sql?
Give the order of sql select?
Explain the uses of control file.
How to download oracle sql developer?
Is it mandatory for the primary key to be given a value when a new record is inserted?
What is the difference between null value, zero, and blank space?
what is the difference between primary key and unique key? : Sql dba
What action do you have to perform before retrieving data from the next result set of a stored procedure ?
Define implicit and explicit cursors.
What do you understand by pl/sql cursors?
explain primary keys and auto increment fields in mysql : sql dba
Can primary key be changed?
Is sql a scripting language?
What packages are available to pl/sql developers?
What is partition by in sql?