How to select the name of employee who is getting maximum
sal with out using subquery
Answers were Sorted based on User's Feedback
Answer / girija.112
ANS :
select max(ename) keep (dense_rank last order by sal) ename
from emp
ENAME
-----
KING
| Is This Answer Correct ? | 8 Yes | 4 No |
Answer / naidu
SELECT * FROM Emp
WHERE LEVEL=&Number
CONNECT BY PRIOR Sal > Sal ;
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / naresh
Here is the solution.
Select E_id, E_name,Salary from the Employes group by E_ID
Having Salary=Max(Salary)
Should work.
Try it and let me know.
Cheers!
Naresh
| Is This Answer Correct ? | 0 Yes | 0 No |
Select * From (Select * From Employee Order By Salary Desc) a
Where rownum=1 ;
Or
Select * From (Select Emp_id, Emp_NM, Salary From Employee Order By Salary Desc) a
Where rownum=1 ;
Based on Oracle 11g.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
select ename,max(sal)from emp group by ename;
| Is This Answer Correct ? | 6 Yes | 9 No |
IS it possible to built the oracle database without setting the kernal parameters?
Is there any function in oracle similar like group_concat of mysql?
Hi can anyone tell me where are the dumps found of OCA certification.. Also the materials to be studied for the preparation.
Will the Optimizer always use COST-based approach if OPTIMIZER_MODE is set to "Cost"?
What are the benefits of ordbms?
Why is oracle database so popular?
What is integrity and what is constraint??Explain with example
Difference between NO DATA FOUND and %NOTFOUND?
Define oracle database
What is a private synonym?
What is Redo Log Buffer in Oracle?
Anyone have the Latest Oracle Dumbs?While u have please forard to narain1411@gmail.com