Write a query to get all details of employee who has maximum
salary from employee table
Answer Posted / krishh
SELECT max(salary) FROM Employee WHERE salary NOT IN (SELECT max(salary) FROM Employee);
| Is This Answer Correct ? | 23 Yes | 4 No |
Post New Answer View All Answers
What is the difference between nvl and nvl2?
What is index fragmentation in ms sql server?
What's new in sql management studio for sql server? : sql server management studio
Where are sql server usernames and passwords stored in the sql server?
Explain what are the events recorded in a transaction log?
Explain the creation and execution of a user-defined function in the sql server?
Explain about service Broker functions?
What is a cache in ssrs?
Tell me what is the significance of null value and why should we avoid permitting null values?
How can we solve concurrency problems?
How to receive output values from stored procedures?
What are the types of database recovery models?
Explain different types of lock modes in sql server 2000?
What is normalization process?
how to restart sql server in single user mode? How to start sql server in minimal configuration mode? : Sql server database administration