write the query for find the top 2 highest salary in sql
server
Answer Posted / mohan c v
select min(salary) from
(select top 2 salary from emp order by salary desc) as a
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is advantage data architect?
Can we perform backup restore operation on tempdb? : sql server database administration
How do you identify a foreign key?
How we can compare two database data?
What is the difference between cube operator and rollup operator? : SQL Server Architecture
What are xml indexes?
What is the order by used for?
Are all views updatable ?
Please differentiate between a local and a global temporary table?
What is perspective, have you ever created perspective? : sql server analysis services, ssas
How to select all columns of all rows from a table with a select statement in ms sql server?
What is clr ddl trigger?
What is temporary table in sql server? Why we use temp table?
Name and describe few console utilities for ssrs?
How to drop existing indexes in ms sql server?