From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / debjani chakraborty
Select * from Employee where salary in(select max(salary)
from Employee);
| Is This Answer Correct ? | 58 Yes | 2 No |
Post New Answer View All Answers
Why is a trigger used?
What does varchar include?
What are actual parameters and formal parameters?
What do you mean by table in sql?
Is join an inner join?
What is the default isolation level in sql server? : Transact sql
What is full join?
What are local and global Indexes and where they are useful.
What are types of indexes in sql?
Can we rollback after truncate?
Can a table contain multiple primary key’s?
Explain the rollback statement?
Does group by remove duplicates?
How to display the current date in sql?
What is memory optimized?