find out the third highest salary?
Answer Posted / mohd. rashid
SELECT TOP 1 salary
FROM(
SELECT DISTINCT TOP 3 salary
FROM employee
ORDER BY salary DESC)
ORDER BY salary
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What privilege is needed for a user to query tables in another schema?
What is the relation of a user account and a schema?
How to export your connection information to a file?
What are the differences between char and nchar in oracle?
Explain the dml?
What are the differences between number and binary_float in oracle?
In not less than 100 words what's the main difference between Rolap and Molap in ORACLE ?
HI, Please let me know the syllabus for Oracle OCA and OCP Certification
What is the usage of save points in oracle database?
Explain the use of record length option in exp command.
What is the difference between Delete, Truncate and Drop in Oracle?
What is the difference between substr & instr functions?
How do you increase the OS limitation for open files (LINUX and/or Solaris)?
How to rollback the current transaction in oracle?
What is ceil and floor in oracle?