find out the third highest salary?
Answer Posted / madhu
To find nth salary:
SELECT SUBSCRIBER_no
FROM (SELECT SUBSCRIBER_NO, ROWNUM R
FROM (SELECT DISTINCT SUBSCRIBER_NO
FROM SUBSCRIBER
ORDER BY SUBSCRIBER_NO DESC))
WHERE R = &R
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
HI, Please let me know the syllabus for Oracle OCA and OCP Certification
Point out the difference between user tables and data dictionary?
How to select an oracle system id (sid)?
material view and view disadvantages?
What is an oracle database?
What are temporal data types in oracle?
Why do you create or replace procedures rather that drop and recreate.
What is data file?
Explain the use of rows option in exp command.
What is key preserved table?
Where do you use decode and case statements?
What is an oracle transaction?
Can we use bind variables in oracle stored procedure?
What is a initialization parameter file in oracle?
What are triggers in oracle?