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
What is difference between temp table and cte?
What are the 3 types of schema?
How sql server executes a statement with nested subqueries?
What are the different types of indexes?
Can we do dml on views?
Why is there a performance difference between two similar queries where one uses union and the other uses union all?
Explain acid?
Explain about temporary stored procedure?
List the various tools available for performance tuning?
What is the difference between update lock and exclusive lock?
If the job running very slow what is the action you do
What is a field name?
how can a database be repaired? : Sql server administration
What the different topologies in which replication can be configured?
What are the character string functions supported by sql server 2005?