how to calcuate the second highest salary of he employee
Answer Posted / eshwer
Try this
select * from (SELECT empno,sal, DENSE_RANK() OVER (ORDER BY sal desc) AS SalRnk
FROM scott.emp) where salrnk=2;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the the delete statements in sql?
Is pl sql and postgresql same?
Is sql harder than python?
What is integrity in sql?
What is trigger and types?
What is sql partition function?
what is 'trigger' in sql? : Sql dba
How do you change a value in sql?
What is sequence in sql?
What is database white box testing and black box testing?
What is difference between db2 and sql?
What operating systems are supported by oracle sql developer?
what are all the common sql function? : Sql dba
Is it important to partition hard disk?
Show the cursor attributes of pl/sql.