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


Please Help Members By Posting Answers For Below Questions

Database crashes. Corruption is found scattered among the file system neither of your doing nor of Oracles. What database recovery options are available? Database is in archive log mode.

1534


What are the limitations oracle database 10g xe?

572


Explain compound trigger in oracle?

548


What is SQL access advisor in Oracle?

632


What are the various types of snapshots ?

562






How to loop through a cursor variable?

569


We are using Oracle apps with XML publisher.In that,we are facing some problems while giving a Footer in RTF Template.While giving a footer in RTF Template it is Visible in all the pages,but after the PDF is getiing generated,the Footer are Visible on alternate pages only (like on first page ,third page) and so on. Please provide the Solution for getting the Footer on all the pages.

4930


what are steps for interface? where is exchange rate defined in which table?

1497


What is meant by recursive hints in oracle?

618


What is data type in oracle?

562


How to calculate date and time differences in oracle?

531


What is memory advisor in Oracle?

636


How to apply filtering criteria at group level in oracle?

587


How to get execution path reports on query statements?

566


How to get last row id?

557