How to select the name of employee who is getting maximum
sal with out using subquery
Answer Posted / srinu.g
select b.ename from emp b,(select max(sal) k from emp) a
where a.k=b.sal;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a system tablespace?
What is recovery manager(rman) backup in Oracle?
Briefly explain what is literal? Give an example where it can be used?
How to use null as conditions in oracle?
Write a syntax for update query in oracle?
What happens if variable names collide with table/column names?
How do I learn what codesets are available in oracle?
what are actual and formal parameters?
What is the relation of a user account and a schema?
What is the difference between hot backup and cold backup in oracle? Tell about their benefits also.
Name the three major set of files on disk that compose a database in Oracle?
How do I start tns listener?
How to start a new transaction in oracle?
What privilege is needed for a user to query tables in another schema?
What are the uses of a database trigger?