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
Does inner join return duplicate rows?
what is the functionality of the function htmlentities? : Sql dba
when MSQL8.0 is in market
Can you rollback after commit?
Why do we use procedures?
Can sql function call stored procedure?
What is interval partition?
What is the cause of mutating table error and how can we solve it?
What is numeric function sql?
what are the different tables present in mysql? : Sql dba
Explain the types of joins in sql?
Can a foreign key be a duplicate?
what is timestamp in mysql? : Sql dba
How to write a single statement that concatenates the words ?hello? And ?world? And assign it in a variable named greeting?
Define implicit and explicit cursors.