From an Employee table, how will you display the record
which has a maximum salary?
Answer Posted / apsar
select * from (select e.* from emp order by e.sal desc)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Are null values same as that of zero or a blank space?
Is join and inner join the same?
what is the functionality of the function htmlentities? : Sql dba
Why are sql stored procedures used?
How do I partition in sql?
how to enter characters as hex numbers? : Sql dba
What makes a good primary key?
Differentiate between sga and pga.
What is union?
What are types of exception?
how are mysql timestamps seen to a user? : Sql dba
Is drop table faster than truncate?
What is the sql*loader? : aql loader
how do you tune the slow running queries in oracle db , explain the methodology
What is clustered index sql?