how to find the second highest salary in a given table????
Answer Posted / mahesh
SELECT *
FROM (SELECT ROWNUM sl, salary
FROM (SELECT DISTINCT salary
FROM employees
ORDER BY salary))
WHERE sl = n
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is difference between sql plus and sql*plus? (not sql and sql plus).
Explain the difference between replace() and translate() functions in oracle?
What is a cursor in oracle?
What are advantages of dateset in datastage?
How many memory layers are in the oracle shared pool?
How to loop through a cursor variable?
How to sort output in descending order in oracle?
Please explain oracle data types with examples?
How many types of tables are there in oracle?
How to generate query output in html format?
What is meant by joins?
How to get last row id?
What is sharded cluster?
How to check database size in Oracle?
How to convert numbers to characters in oracle?