find out the second highest salary?
Answer Posted / radhiv kumar
PROC SQL;
SELECT MAX(SALARY) FROM RIGHTMER1
WHERE SALARY < SELECT MAX (SALARY)FROM RIGHTMER1;
QUIT;
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain table?
What is program global area (pga) in oracle?
How to get a create statement for an existing table?
Which dictionary view(s) would you first look at to understand or get a high-level idea of a given Advanced Replication environment?
What is memory advisor in Oracle?
How to do clean up if create database failed?
What is a trace file and how is it created in oracle?
What happens if the update subquery returns multiple rows?
How to convert numbers to characters in oracle?
How to assign data of the deleted row to variables?
Can a formula column referred to columns in higher group ?
Can the query output be sorted by multiple columns in oracle?
How do I connect to oracle?
How to create a table interactively?
How to export data with a field delimiter?