Query for second maximum salary in each in each department
Answer Posted / sravan
Select first_name, salary, rownum rank from
(select *from emp order by salary desc)
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Is subquery faster than join?
What is the function that is used to transfer a pl/sql table log to a database table?
Which is faster count (*) or count 1?
Why do we use joins?
What is a behavioral trigger?
Explain the working of foreign key?
How do I partition a table in sql?
What is query execution plan in sql?
What are the advantages of pl sql?
Can you call pl/sql package functions from within a fast formula?
What are some emotional triggers?
Can a composite key be null?
What does desc stand for?
how to dump a table to a file with 'mysqldump'? : Sql dba
Can we commit in trigger?