From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / jayshree
SELECT LAST_NAME,MAX(SALARY)
FROM EMPLOYEES
GROUP_BY SALARY;
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
Does sql view stored data?
Any attempt to navigate programmatically to disabled form in a call_form stack is allowed?
Why do we need cursors in pl sql?
What is clustered index in sql?
What are the benefits of pl sql?
What is clause?
How to look at the current sql*plus system settings?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
Does truncate table reset auto increment?
How do I kill a query in postgresql?
Does sqlite need a server?
What is the main difference between sql and pl/sql?
What are the topics in pl sql?
What is inner join in sql?
Can you do multiple joins in sql?