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 create an oracle testing table?
Explain integrity constraint?
What is blob datatype?
Is there a function to split a string in plsql?
What are the ansi data types supported in oracle?
How to define a specific record type?
What is difference between truncate and delete?
how to handle exceptions in post production
What is the scope of a local variable?
Explain the function of optimizer in oracle?
How to delete all rows a table in oracle?
What is an oracle cursor variable?
What is the difference between substr & instr functions?
In Oracle Applications We are Using Sub Ledger Accounting. When we Transfer the Data all modules (AP,AR,CE,FA) to SLA We done Some customizations? What are They??
Explain alias?