1.how to extract the second highest salary from emp table
having sal as a column which contains the salary of all
employee of an organisation.
Answer Posted / neha k
select sal
from (SELECT sal, rownum row_num
FROM emp
order by sal desc)
where row_num = 2;
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Differentiate between function and procedure in oracle.
Explain oracle left join with an example?
What is a proxy class?
What are the database administrators utilities available?
What is the exact use of Collections?
How does Oracle guarantee data integrity of data changes?
what are archived logs?
What is the difference between "as" and "is" in an oracle stored procedure?
What is a trigger and what are its types in oracle?
What is analyze command used for?
What is memory advisor in Oracle?
What is an external table?
Can we protect our pl/sql source code?
How to convert a string to a date in oracle database?
What is the max number of columns in an oracle table?