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
Explain index?
Explain a data segment?
Define oracle database
What is the difference between the Oracle ODBC driver and a Microsoft ODBC (Open Database Connectivity) Driver?
What are the various types of snapshots ?
Point out the difference between user tables and data dictionary?
How can Oracle users be audited?
What is a schema in oracle?
What is oracle host variable?
How do I connect to oracle database?
What is the quickest way to export a table to a flat file?
What is the difference between count (*), count (expression), count (distinct expression)?
Explain about your project and its relation to the current job position you are applying to?
State and explain the different types of data models?
Explain cascading triggers.