not exists改為外連線

lawzjf發表於2007-10-29

SQL> conn scott/tiger
已連線。

SQL> select dname from dept

2 where not exists(select * from emp where deptno=dept.deptno)

3 /

DNAME

--------------

OPERATIONS

SQL> select d.dname from dept d left outer join emp e

2 on d.deptno=e.deptno

3 where e.empno is null

4 /

DNAME

--------------

OPERATIONS


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/37724/viewspace-152653/,如需轉載,請註明出處,否則將追究法律責任。

相關文章