Write a query to get all details of employee who has maximum
salary from employee table
Answer Posted / vineet
Select * from EMP_TAB where salary = (select max(salary) from EMP_TAB;
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is nolock hint in sql server 2008
What is the impact on other user sessions when creating indexes?
What is raid, and how it can influence database performance?
What is unpivot?
What does it mean to be in union?
What is the process of indexing?
What do you do in data exploration
Can we do dml on views?
Why I can not enter 0.001 second in date and time literals in ms sql server?
How to fetch the next row from a cursor with a "fetch" statement?
What is sleeping status in sql server?
what is database replicaion? What are the different types of replication you can set up in sql server? : Sql server database administration
What is indexing a document?
Which are ddl commands?
How to handle error or exception in sql?