From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / sharmila
Select * from Employee where salary in(select max(salary)
from Employee)
| Is This Answer Correct ? | 13 Yes | 1 No |
Post New Answer View All Answers
When is a declare statement required?
What is synchronized subquery?
Do triggers have restrictions on the usage of large datatypes, such as long and long raw?
Can there be 2 primary keys in a table?
What is the use of <> sql?
Can we join 3 tables in sql?
How many types of keys are there in sql?
Who developed sql?
What is normalisation and its types?
What are different sql data types?
What is a procedure in pl sql?
what is the difference between a web-garden and a web-farm? : Sql dba
Why we use join in sql?
What does truncate mean in sql?
How do I find duplicates in sql?