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
How to connect to oracle using service name instead of sid?
How would you best determine why your MVIEW couldnt FAST REFRESH?
Can I create users through internet explorer in oracle 10g?
Explain the use of log option in exp command.
Differentiate between post-database commit and post-form commit?
What is the difference between translate and replace?
What is a package ? What are the advantages of package ?
Explain index?
How to define an explicit cursor in oracle?
What to do if the binary spfile is wrong for the default instance?
What is a procedure in oracle?
How to use "startup" command to start default instance?
What are the four Oracle system processes that must always be up and running for the database to be useable?
Can objects of the same schema reside in different tablespace?
What is clustered table in Oracle?