how to calcuate the second highest salary of he employee
Answer Posted / sachin s. patil
SELECT * FROM
(SELECT ROWNUM DD, M.* FROM
(SELECT SAL FROM EMP order by sal desc )M)
WHERE DD=2
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How do I order by ascending in sql?
What is difference between hql and native sql?
Is sql similar to python?
What is gpt format?
What are the parts of a sql statement?
What is the least restrictive isolation level? : Transact sql
What is trigger and types?
Can we group by two columns in sql?
what is msql? : Sql dba
How can you view the errors encountered in a trigger?
what is the stuff function and how does it differ from the replace function? : Sql dba
What is a mutating table and a constraining table?
What are local and global variables and their differences?
Why schema is used in sql?
is mysql query is case sensitive? : Sql dba