find out the second highest salary?
Answer Posted / anitha
select min(salary)
from (select distinct salary
from employee
order by salary desc)
where rownum <= 2
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
From the following identify the non schema object: packages, triggers, public synonyms, tables and indexes.
Please explain oracle data types with examples?
What is an oracle table?
In Oracle Clinical 4.5.0, can the VIEW_TEMPLATE_ID column in DATA_EXTRACT_VIEWS table contain NULL value?
How do I find the database name in oracle?
How to call a sub procedure?
What is the difference between substr & instr functions?
Can we store images in oracle database?
Who developed oracle & when?
What is define in oracle?
How to rebuild an index in oracle?
How to select all columns of all rows from a table in oracle?
Give the constructs of a package, function or a procedure.
How translate command is different from replace?
How to assign a table row to a record variable?