write the query for find the top 2 highest salary in sql
server
Answer Posted / k.elumalai
select max(salary)from emp where salary <(select sum(salary)
from emp)
| Is This Answer Correct ? | 6 Yes | 12 No |
Post New Answer View All Answers
What are user-defined functions (udfs) in sql server?
What are the fixed server level roles? : sql server security
What are indexers?
What is ddl command?
What is a performance monitor?
What are the different types of replication are there in sql server 2000?
What are the commands used in DCL?
What are the reporting services components?
Do you know what is openxml in sql server?
Explain log shipping and mention its advantages.
How is table type constraint applied to a table?
What is sql server profiler trace data file?
What command must you use to include the not null constraint after a table has already been created?
Explain what are the restrictions while creating batches in sql server?
What is the sql case statement used for? Explain with an example?