There are three tables :
E : EID,ENAME
D : DID,DNAME
empdept : eid, did
select the employees who doesn't belong to any dep
Answer Posted / ajit
select e.eid, e.ename
from E e, D d
where e.eid = d.did(+)
and d.did is null;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can group functions be used in the order by clause in oracle?
Is the After report trigger fired if the report execution fails ?
What is SQL Tuning Advisor in Oracle?
please explain.. DB architecture ...
What is an oracle table?
How to create a stored function in oracle?
What is oracle used for?
How to pass parameters to procedures?
How to pass parameters to procedures in oracle?
How to join two tables in a single query using oracle?
What are group functions in oracle?
What is truncate oracle?
How to add another datafile to a tablespace?
Explain the use of compress option in exp command.
What happens in oracle commit?