how to find the second highest salary from emp table?
Answer Posted / mastan
select name,salary from (select salary from emp order by
salary desc)where rownum<2
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is relationship? How many types of relationship are there?
List the ways to get the count of records in a table?
What is the difference between explicit and implicit cursors in oracle?
Is join an inner join?
What are the different datatypes available in PL/SQL?
Why indexing is needed?
Can we insert data into view?
What are the uses of merge?
What is on delete set null?
What is a sql statement?
what are the properties and different types of sub-queries? : Sql dba
How many types of cursors supported in pl/sql?
what are myisam tables? : Sql dba
How do I order columns in sql?
Can you have more than one key in a database?