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 / neha_gupta

SELECT E.ENAME FROM EMPLOYEE E WHERE E.EID IN (SELECT EID
FROM EMPDEPT WHERE DID IS NULL)

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do we get field detail of a table?

627


How can I convert single byte kana characters into multi byte kana characters and vice-versa.

1933


What is logical backup in oracle?

580


Explain oracle left join with an example?

587


How to load data through external tables?

583






What do you understand by database schema and what does it hold?

597


What is sequence?

624


Can group functions be mixed with non-group selection fields?

536


What are dml statements in oracle?

621


How to run create database statement?

579


Where do you use decode and case statements?

555


How to assign a tablespace to a users in oracle?

591


What is oracle database 10g express edition?

599


Why do I get unexpected characters from 8-bit character sets in weblogic jdriver for oracle?

612


 How to use an oracle sequence generator in a mapping?

570