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 acid db?
Why functions are used in sql server?
Explain difference between cross join and full outer join?
If you want to send some data from access database to sql server database. What are different component of ssis will you use?
What is fill factor and pad index?
Explain concepts of analysis services?
What are the aggregate and scalar functions?
What is a db view?
Who is the owner of a schema in ms sql server?
What are the types of containers in ssis?
Explain stored procedure?
what is bit datatype and what's the information that can be stored inside a bit column? : Sql server database administration
What is sql stored procedure?
Can we install sql server 2016 on windows 7?
How to recover from sql injection? : sql server security