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 use regular expression in pattern match conditions? : Sql dba
What is a pdo connection?
What is difference between stored procedure and trigger?
Can you join views in sql?
What is dialect in sql?
What are joins in sql?
How can we make an if statement within a select statement?
What does where 1 1 mean in sql?
What is native sql query?
What are sql*plus environment variables?
Can we insert in sql function?
what are the types of join and explain each? : Sql dba
what is an index? : Sql dba
what is a trigger in mysql? Define different types of trigger. : Sql dba
Explain normalization and what are the advantages of it?