From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / amit kumar agarwalla
select * from employees
where salary=(select max(salary) from emplpoyees);
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how to dump a table to a file with 'mysqldump'? : Sql dba
Does sql use python?
What is case function?
How do I turn a list into a table?
How many tables can you join in sql?
How do you drop a trigger?
what is bcp? When does it used? : Sql dba
How to execute a stored procedure?
Does sql require a server?
What is sql not null constraint?
what is the difference between cluster and non cluster index? : Sql dba
What is sql indexing?
What are the packages in pl sql?
What is count * in sql?
How to pipe multiline string to isql?