how to find the second highest salary from emp table?
Answer Posted / mallika
SELECT salary FROM employee a
WHERE &n IN (SELECT COUNT(*) FROM employee b
WHERE a.salary <= b.salary)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is mutating sql table?
What is a trigger word?
What are different types of keys?
What is an oracle stored procedure?
How to write html code in pl sql?
What is a join query?
Can we edit a view in sql?
What is sql performance tuning?
Is truncate ddl or dml?
State some properties of relational databases?
What are crud methods?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
Is it possible to create the following trigger: before or after update trigger for each row?
How do you remove duplicate records from a table?
What are the different types of constraints?