Find top Nth employee from each department in terms of
salary?
Answer Posted / saber ali
select max(salary) from employee where salary in (select top
4 salary from employee order by salary desc)
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What options are there to delete rows on the publisher and not on the subscriber? : sql server replication
Explain what stored procedure sp_replcounters is used for? : sql server replication
What is the process of indexing?
How to get the definition of a trigger back?
Can you insert NULL in unique column?
Differentiate between a primary key and a unique key.
Can a table be moved to different filegroup?
Tell me about joins in database system and explain each in detail.
How to reaname table name without using sp_Rename in sql server..?
What is a user-defined function in the sql server and what is its advantage?
What is the native system stored procedure to execute a command against all databases?
Explain the properties of the relational tables?
How to read data in a table with "select" statements?
how would you store your query in an SSRS report or a Database server?
How to execute function in stored procedure sql server?