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 the advantages of using stored procedures? : Sql dba
What is compilation error in pl sql?
What is type and rowtype in pl sql?
What is a design view?
How many unique keys can a table have?
How to run sql commands in sql*plus?
How many types of cursors are available in pl/sql?
What is the use of sqlerrd 3?
What are the different types of triggers?
How does sql developer connect to oracle database?
What is a record in a database?
How do I remove sql developer from windows 10?
How many subqueries can be nested in a statement?
What is sql trigger example?
What does fetching a cursor do?