how to find the second highest salary from emp table?
Answer Posted / winnie
select max(sal) from emp
where sal not in (select max(sal) from emp )
| Is This Answer Correct ? | 1090 Yes | 131 No |
Post New Answer View All Answers
What is a function in oracle pl sql?
How many sql are there?
Why use triggers in sql?
What is pragma in pl sql?
How to run pl sql program in mysql?
How can I tell if sql is running?
What is pl sql code?
What kind of join is join?
What is the difference between database trigger and stored procedure?
write an sql query to get third maximum salary of an employee from a table named employee_table. : Sql dba
what is a constraint? : Sql dba
How to look at the current sql*plus system settings?
What are the parameter modes supported by pl/sql?
Can a view be mutating? If yes, then how?
How do I partition in sql?