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
What is a database event trigger?
What is sql and db2?
What is trigger types in sql?
Is it possible to pass parameters to triggers?
What is an escape character in sql?
What is the difference between sql and mysql?
What does rownum mean in sql?
Is oracel sql developer written in java?
What is the difference between partitioning and sharding?
What is raw datatype in sql?
What is set transaction?
What is lookup table in sql?
how to get a list of indexes of an existing table? : Sql dba
Can we use rowid as primary key?
Explain correlated query work?