From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / kvsd
select * from employees where salary = (select max(salary)
from employees)
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is oracle sql developer?
Why we use triggers in mysql?
Explain exception handling in pl/sql?
List the different type of joins?
Can ddl statements be used in pl/sql?
Is postgresql a nosql database?
Can unique keys be null?
What are two statement types in sql?
Differentiate between pl/sql and sql?
What is string data type in sql?
How to run sql statements with oracle sql developer?
Explain what is sql?
What is orm in sql?
Which normal form is best?
What is percent sign in sql?