From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / suresh babu
SELECT * FROM employees WHERE salary = (SELECT MAX(salary)
FROM employees);
This query will return the employee details,who getting
maximum salary.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What are the steps for performance tuning.
Explain what is an index?
What is primary key and unique key?
What is the process of debugging?
Which command is used to delete a package?
How many postgresql users are there, worldwide?
What is the location of pre_defined_functions.
Does sql*plus also have a pl/sql engine?
How to select unique records from a table?
Why is sharding used?
What are reports usually used for?
What is sql query optimization?
What are the packages in pl sql?
What is an emotional trigger?
Define concurrency control. : Transact sql