how to check the 3rd max salary from an employee table?
Answer Posted / neeraj79
SELECT DISTINCT salary
FROM employee
ORDER BY salary DESC
LIMIT(2,1)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Where is sql database stored?
Which type of cursor is used to execute the dml statement?
How do I start pl sql?
How can you save or place your msg in a table?
What is difference between db2 and sql?
Is sql better than excel?
What is an example of translating a date into julian format?
What is the difference between instead of trigger and after trigger?
What is sqlerrm?
What is cross join sql?
How to assign sql query results to pl sql variables?
How can a function retun more than one value in oracle with proper example?
what are the differences between char and nchar? : Sql dba
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
Which is better cte or subquery?