Find out the 3rd highest salary?
Answer Posted / nikhilesh roy
WITH
CTE as
(select emp_id,salary,rn=row_number() over (order by salary desc) from emp_table )
select * from CTE where rn=3;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are aggregate functions in sql?
How do you go back in sql?
does sql support programming? : Sql dba
what are the maximum number of rows that can be constructed by inserting rows directly in value list? : Transact sql
What is rtm stands for?
What is an escape character in sql?
Can you have more than one key in a database?
What is t sql in sql server?
Why do you partition data?
What are the usages of sql?
how to use myisamchk to check or repair myisam tables? : Sql dba
What is use of term?
How to start oracle sql developer?
What are the syntax and use of the coalesce function?
Is foreign key mandatory?