How to find 6th highest salary from Employee table ?
Answer Posted / lince
select * from(select salary,dense_rank() over(order by salary desc) as rno from emp)T where T.rno=6
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to use column default values in insert statements in ms sql server?
Write down the syntax and an example for create, rename and delete index?
What is store procedure?
What is database architecture? : SQL Server Architecture
IF more than one Site is accessing the same Database server and I want to move the DB with Minimum down time? How will you do
What are the various Operating system files that every SQL server 2005 database has and what is the purpose.
How to create a dml trigger using create trigger statements?
What is a coalesce function?
What is the process of normalization?
What is normalization process?
What is server-level principal?
How to provide values to stored procedure parameters in ms sql server?
What are the different types of locks in the database?
What does <> symbol mean?
What is the name of the system variable that returns the number of rows affected by a SQL statement?