how to find nth highest salary
Answer Posted / pandian
select top 1 salary from (select distinct top 9 salary from
EmpMaster order by salary desc)a
| Is This Answer Correct ? | 65 Yes | 88 No |
Post New Answer View All Answers
Tell me what is the significance of null value and why should we avoid permitting null values?
How to create a simple stored procedure in ms sql server?
How to find out what is the default collation in a database?
what kind of lan types do you know? : Sql server database administration
What is 3nf normalization?
Is there any difference between the primary key and unique key?
What is a trigger? Why we need it?
What is the significance of null value and why should we avoid permitting null values?
What is the syntax to execute the sys.dm_db_missing_index_details?
Define left outer join?
If we delete pack Spec what will be the status of pack Body ?
How can I check if a view exists in a sql server database?
Explain Capacity planning to create a database? and how to monitor it?
Does view occupy space?
What is the purpose of update statistics and scope_identity() function?