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
explain primary keys and auto increment fields in mysql : sql dba
What type of database is sql?
how to get a list of indexes of an existing table? : Sql dba
How can we solve sql error: ora-00904: invalid identifier?
Explain what is sql?
What is the limitation on the block size of pl/sql?
what are the differences between binary and varbinary? : Sql dba
What is sql dialect?
Does google use sql?
What is int identity in sql?
How do I remove duplicates in two columns?
How to convert comma separated string to array in pl/sql?
What is difference between ms sql and mysql?
What is sql partition?
What is rename in sql?