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
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
how are mysql timestamps seen to a user? : Sql dba
What is varchar used for?
How do you rank data in sql?
Is left join inner or outer by default?
What is sqlca in db2?
How to get unique records from a table?
How to rename a column in the output of sql query?
Why function is used in sql?
What is partition in sql query?
Is join an inner join?
Explain what is dbms?
Can a table have no primary key?
Is pl sql better than sql?
Explain the difference between drop and truncate commands in sql?