display details of employee's who are seniour to there own
manager ? ( In a Emp Table )

Answers were Sorted based on User's Feedback



display details of employee's who are seniour to there own manager ? ( In a Emp Table )..

Answer / jyothi

select e.ename,e.hiredate,m.ename,m.hiredate from emp e,emp m
where e.mgr=m.empno
and e.hiredate<m.hiredate

Is This Answer Correct ?    2 Yes 0 No

display details of employee's who are seniour to there own manager ? ( In a Emp Table )..

Answer / guest

SELECT * FROM Emp GROUPBY department HAVING dateofbirth >any
(select dateofbirth FROM Emp GROUPBy department);

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Oracle Errors Interview Questions

RMAN-08099: specifying standby controlfile for proxy backup

1 Answers  


ORA-15130: diskgroup "string" is being dismounted

1 Answers  


RMAN-08029: snapshot controlfile name set to default value: string

1 Answers  


ORA-38704: Checksum error in flashback database log file header.

1 Answers  


ORA-13207: incorrect use of the [string] operator

1 Answers  






NZE-29162: Non-FIPS cipher suites being used in FIPS mode.

1 Answers  


PLS-00167: keyword BULK is used in a wrong context

1 Answers  


ORA-08323: scnmin: close of bias lock failed

1 Answers  


ORA-02279: duplicate or conflicting MINVALUE/NOMINVALUE specifications

1 Answers  


PROT-00011: Failed to open the specified destination cluster registry

1 Answers  


ORA-30681: improper value for argument EXTENSIONS_CMD_SET

1 Answers  


ORA-00361: cannot remove last log member string for group string

1 Answers  


Categories