write a query for the fifth highest salary?
Answer Posted / shahid
select *from(select sal,rank() over(order by sal desc)as sal_rank from emp) where sal_rank=5;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of normalizing a database.
Under which circumstance should you create an index on a table?
What is a super key?
Explain the various types of normalization.
Which Statement would you use to remove the EMPLOYEE_Id_PK PRIMARY KEY constraint and all depending constraints from the EMPLOYEE table?
what is the role of auditor in auditing data oriented applications?
What is Object Oriented model?
What is the Lock Based Protocol used for?
how can we view column head in first page but not in remaining pages?
What is a Transformation?
Which three commands cause a transaction to end?
Which database is best to store images?
What is odm in database?
What is Data Modelling?
Should I store images in database?