how to find nth highest salary
Answer Posted / jiten
select top 1 salary from employee where salary in (select
top n salary from employee order by salary desc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to update multiple rows with one update statement in ms sql server?
what is the difference in login security modes between v6.5 and 7.0? : Sql server database administration
In one interview...interviewer ask me question pleas tell me sql server architecture.. can any body tell me the sql server architecture with digram
How to create a large table with random data for index testing in ms sql server?
How to set a database state to offline in ms sql server?
What is the full form of ddl?
What is difference between drop truncate and delete?
What are the underflow and overflow behaviors on float literals?
Write an sql query to sort a table according to the amounts in a row and find the second largest amount.
how you can get the list of largest tables in a database? : Sql server administration
What are triggers in ms sql server?
What happens on checkpoint?
Write a program using SQL queries to find a unique entry in a table.
what is the difference between count(*) and count(1) ?
Does table partitioning improve performance?