how to find the fifth highest salary?

Answer Posted / soni

select MIN(salary) from (select distinct salary from employees
order by salary desc) where ROWNUM < 6 ;

ITS SELECTING from employees table 5th highest salary

Is This Answer Correct ?    3 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is DML (Data Manipulation Language)?

523


What is parallel database architecture?

450


What is DML Compiler?

584


Explain what are the restrictions that views have to follow? : sql server architect

470


What is durability in DBMS?

567






What is model database? : sql server architect

468


What is System R? What are its two major subsystems?

444


What is end user data?

461


What is master database? : sql server architect

490


What are the levels of architecture?

455


What is a checkpoint and When does it occur?

467


What do you know about system database? : sql server architect

446


What is Functional Dependency?

468


Does storing of data in stored procedures increase the access time? Explain?

817


What is hypermedia database?

460