Find out the 3rd highest salary?
Answer Posted / vikram kumar
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 Difference Between Unique and Primary Key Constraints?
Is sql a backend language?
Is merge a dml statement?
How do I save a stored procedure?
What is trigger in sql? Explain
What is scalar function?
Mention what problem one might face while writing log information to a data-base table in pl/sql?
What are the types of triggers in sql?
what are date and time data types? : Sql dba
What is dynamic query?
what is a constraint? : Sql dba
What programs use sql?
What is difference between stored procedures and application procedures?
what are all the common sql function? : Sql dba
What is sql indexing?