From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / hari
select max(sal) from employee;
or
select * from employee where sal in(select max(sal) from employee);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do I view a table in sql?
What is a table?
What is query execution plan in sql?
What is pessimistic concurrency control? : Transact sql
what are date and time intervals? : Sql dba
how can we know the number of days between two given dates using mysql? : Sql dba
What is the benefit of foreign key?
What is constant in pl sql?
Is vs as in pl sql?
Is sqlite free?
How do you modify a column in sql?
what are the drivers in mysql? : Sql dba
List out the acid properties and explain?
what are the disadvantages of mysql? : Sql dba
Does oracle roll back the transaction on an error?