Find top Nth employee from each department in terms of
salary?
Answer Posted / madhu
select top 1 salary,employee from (table name) group by
department
| Is This Answer Correct ? | 10 Yes | 13 No |
Post New Answer View All Answers
What are the indexes in sql server?
How to loop through result set objects using odbc_fetch_row()?
What are different types of raid levels?
Which tcp/ip port does the sql server run on? How can it be changed?
Does order by actually change the order of the data in the tables or does it just change the output?
How to join two tables in a single query in ms sql server?
How to get the number of affected rows?
What is the command to change the recovery model?
What is a recursive stored procedure in sql server?
What is bcnf normalization form?
What are sub reports?
Explain trigger classes i.e. Instead of and after trigger?
What does it mean to manipulate data?
Can I use sql azure as a backup with log shipping or database mirroring?
Write a code to select distinct records without using the DISTINCT keyword.