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
How to create lov dynamically at runtime & attach to text field?
What suggestions do you have to reduce the network traffic?
Explain the difference between a procedure and a function? What do you understand by those terms?
how to join query for one source type is oracle another source type is sql server ?
how the indexes are stored in the Oracle Database?
Please explain compound trigger in oracle?
What is a snapshot log?
What is an oracle cursor variable?
What is the maximum number of triggers that can be applied to a single table?
Explain the use of indexes option in imp command.
What do you mean by redo log file mirroring?
What is object data modeling?
Can sub procedure/function be called recursively?
What are the differences between char and nchar in oracle?
Her departmandaki isçilerden empno' su ikinci sirada olan isçilerin empno, deptno, hiredate, sira_no bigilerini döndüren sorguyu yaziniz?