How to select the name of employee who is getting maximum
sal with out using subquery
Answer Posted / flitchner
select name from (select max(sal) as salary from emp) a,
emp b
where a.salary = b.sal;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why is oracle so popular?
Give the various rollback segment states.
Use of an integrity constraint is better to validate data. Explain
Why we use bulk collect in oracle?
Explain the use of show option in imp command.
How do I know if oracle is installed on windows?
What are transaction isolation levels supported by oracle?
When system tablespace is created?
What are a query and state the different types of queries and their uses?
How many types of auditing in Oracle?
various types of hints and their usage
What is the usage of synonyms?
How to create a server parameter file?
How remove data files before opening a database?
Can sub procedure/function be called recursively?