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
how to convert .db (extention) database file into .dmp (extention ) for oracle database ?
How to start your 10g xe server from command line?
How view is different from a table?
What is difference between truncate and delete?
How to convert characters to numbers in oracle?
What are the differences between number and binary_float in oracle?
What is a named program unit?
Does oracle database need java?
What are data pump export and import modes?
How to write a query with an inner join in oracle?
How to insert multiple rows with one insert statement in oracle?
How to use subqueries with the exists operator in oracle?
How to create id with auto_increment on oracle?
What is a lookup table in oracle?
Why does oracle 9i treat an empty string as null?