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 / sudipta santra
select e.ename from e where e.eid in (
(select e.eid from e
minus
select eid from empdept,d where d.did=empdept.did))
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a data lock in oracle?
Give the various rollback segment states.
What is the string concatenation operator in oracle?
ABOUT IDENTITY?
What are the system predefined user roles?
What is meant by an index?
how to convert .db (extention) database file into .dmp (extention ) for oracle database ?
What is Java Pool in Oracle?
What is snapshot is too old? Give and example for better understand.
What is proxy method?
Name the various constraints used in oracle?
What is an oracle?
How to convert character types to numeric types?
Explain about the analyze command in oracle?
How can you tell how much space is left on a given file system and how much space each of the file systems subdirectories take-up?