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 recycle bin in Oracle?
Can group functions be used in the order by clause in oracle?
Explain the use of grant option in exp command.
What is a package ? What are the advantages of package ?
Which is faster join or subquery in oracle?
Explain oracle 12c new features for developers?
How to define and use table alias names in oracle?
How do I manually uninstall oracle client?
Explain the use of online redo log files in oracle.
How different is ms access and oracle?
What operating systems are supported by oracle database 10g xe?
How to get maxsal , minsal, ename department wise in single query
How to list all tables in your schema?
How to lock and unlock a user account in oracle?
How to pass parameters to procedures in oracle?