From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / pree
Select name,salary from Employee where salary in(select max
(salary)
from Employee );
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of function in sql?
What are schema-level triggers?
How do I enable sql encryption?
What is sql used for?
Define implicit and explicit cursors.
what is the difference between mysql_fetch_object and mysql_fetch_array? : Sql dba
how is myisam table stored? : Sql dba
what are enums used for in mysql? : Sql dba
What are all the different types of indexes?
What type of join is sql join?
What are primary key and foreign key and how they work?
what is the difference between undefined value and null value? : Sql dba
Why do we use triggers?
Are sql database names case sensitive?
How do I make my sql query run faster?