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 are rows and columns?
What is implicit mode in sql server?
Where can you find the error log information? : sql server database administration
Explain about unique identifier data type in sql server?
What is abstracting periodical?
explain declarative management framework (dmf) in sql server 2008?
How do I change my passwords (database, LDAP, and so on) without causing an outage?
Name few of the dcl commands in sql?
Explain sub-query?
Explain sql server authentication modes?
What is the difference between getdate and sysdatetime?
Can we add a cpu to sql server?
What guidelines should be followed to help minimize deadlocks?
What is field in algebra?
What happens if null values are involved in boolean operations?