From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / aruna parulekar
select * from employee where sal=(select max(sal) from
employee);
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Why do we need unique key in a table?
What is database white box testing and black box testing?
What are the subsets of sql?
what is bdb (berkeleydb)? : Sql dba
What is difference between primary and secondary key?
Why is sharding used?
How do you remove duplicates without using distinct in sql?
which operator is used in query for pattern matching? : Sql dba
Define a temp table?
What is aggregate function in sql?
How do you declare a variable in pl sql?
How does one use sql*loader to load images, sound clips and documents? : aql loader
Which table is left in left join?
What is a sql instance vs database?
What is a join?