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
How many sql databases can you have on one server?
Can a foreign key be a duplicate?
What is t sql in sql server?
What is anonymous block in sql?
What is data profiling in sql?
describe transaction-safe table types in mysql : sql dba
how can we take a backup of a mysql table and how can we restore it. ? : Sql dba
Does truncate table reset auto increment?
Can we commit inside a trigger?
What is percent sign in sql?
What does a pl/sql package consist of?
What is the difference between cross join and natural join?
Explain exception handling in pl/sql?
What are the syntax and use of the coalesce function?
Is mariadb nosql?