Anybody can tell me, how do we find second largest emp
salary from emp table.. Thanks in advance ...
Answer Posted / amitkumar
Select TOP 1 salary from (select Distinct TOP 2 salary from
employee orderby salary desc)
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
How to use in conditions in oracle?
Oracle
Is oracle an operator?
How to insert a new row into a table in oracle?
Difference between hot backup vs. Cold backup?
What is blob datatype?
What do you understand by a database object? Can you list a few of them?
Explain constraining triggers.
What are the uses of a database trigger?
How to view existing locks on the database?
How to use like conditions in oracle?
What is Trigger in Oracle?
How to resolve the ORA-39133 error in Oracle?
How to call a stored function in oracle?
What are the differences between primary key and unique key?