Please get the 4 th maximum salary from a table without
using any sql keyword (TOP,MAX are mot allowed)
Answer Posted / gajendra
select * from (select *,row_number()over (order by salary
asc)as a from Employee)as b where b.a=4
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Does transparent data encryption provide encryption when transmitting data across the network?
hi, how to link a text file and a .rpt file in my tables of sql server and to retrieve those records for further use. reply me as soon as possible.
Explain what is raid and what are different types of raid levels?
How can you find out how many rows returned in a cursor?
How do I schedule a sql server profiler trace?
Describe how to use linked server?
What is simple indexing method?
How to concatenate two strings in SQL Server.
How to find tables without indexes?
Explain Capacity planning to create a database? and how to monitor it?
How many types of dimensions are there and what are they? : sql server analysis services, ssas
What is the use of partition by in sql server?
how to invoke a trigger on demand? : Sql server database administration
What are secondary xml indexes?
What are a scheduled jobs?