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
Why we need to use secondry database file? though, we can do same work using primary database file also.
What is sub query and its properties?
What is user-defined function?
How to get all stored procedures in sql server?
List the different index configurations possible for a table?
What does sql server mean?
What are the different types of triggers in SQL SERVER?
What happens when transaction log is full?
What is buffer cash in sql server?
How do I create a stored procedure in sql server?
Explain view in sql server?
What do you mean by a Composite primary key?
What are acid properties of transaction?
How to list all stored procedures in the current database using ms sql server?
What functions can a view be used to performed?