Find out the 3rd highest salary?
Answer Posted / himanshu
SELECT TOP 1 salary
FROM (
SELECT DISTINCT TOP 3 salary
FROM employee
ORDER BY salary DESC) a
ORDER BY salary
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the primary key?
What is the file extension for sql database?
What is the difference between an inner and outer join?
What is sql procedures and functions?
What is scope and visibility in PL/SQL?
Is a table valued function object?
What is sql catalog?
what are the disadvantages of mysql? : Sql dba
What is record data type?
What is an inconsistent dependency?
What is cursor and its types?
Can a key be both primary and foreign?
How do you exit in sql?
What sql database should I use?
How many types of indexes are there in sql?