小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

oracle exists and not exist - 令狐春的日志 - 網(wǎng)易博客

 COPY&PASTE 2009-11-09
oracle exists and not exist
 
 
ORACLE   2007-08-30 11:06   閱讀2487   評(píng)論0  
字號(hào):    

先看下面的例子:oracle中兩個(gè)系統(tǒng)表.emp,dept.

example:

1:not exists(not in)

 not exists:

   這條語(yǔ)句返回select * from scott.dept d where e.deptno=d.deptno and d.deptno=10條件滿足的結(jié)果集.也就是說(shuō),

返回的結(jié)果集中不存在d.deptno=10結(jié)果集的記錄,即emp表中沒有dept表中d.deptno=10的記錄.

 SQL> select empno,ename,deptno from scott.emp e where not exists(select * from scott.dept d where e.deptno=d.deptno and d.deptno=10);

EMPNO ENAME      DEPTNO
----- ---------- ------
 7369 SMITH          20
 7499 ALLEN          30
 7521 WARD           30
 7566 JONES          20
 7654 MARTIN         30
 7698 BLAKE          30
 7788 SCOTT          20
 7844 TURNER         30
 7876 ADAMS          20
 7900 JAMES          30
 7902 FORD           20

11 rows selected

not in:

第一個(gè)where條件必須給定字段(deptno), 第二個(gè)sql語(yǔ)句中,必須明確給定要查詢的字段是哪個(gè)(deptno).

SQL> select empno,ename,deptno from scott.emp e where deptno not in(select deptno from scott.dept d where e.deptno=d.deptno and d.deptno=10);

EMPNO ENAME      DEPTNO
----- ---------- ------
 7369 SMITH          20
 7499 ALLEN          30
 7521 WARD           30
 7566 JONES          20
 7654 MARTIN         30
 7698 BLAKE          30
 7788 SCOTT          20
 7844 TURNER         30
 7876 ADAMS          20
 7900 JAMES          30
 7902 FORD           20

11 rows selected

2: exists(in)

  exists:

   這條語(yǔ)句返回select * from scott.dept d where e.deptno=d.deptno and d.deptno=10條件滿足的記錄結(jié)果集.

也就是說(shuō)返回的結(jié)果集中只存在有d.deptno=10的記錄,即emp表中只存在dept表中d.deptno=10的記錄.

SQL> select empno,ename,deptno from scott.emp e where  exists(select * from scott.dept d where e.deptno=d.deptno and d.deptno=10);

EMPNO ENAME      DEPTNO
----- ---------- ------
 7782 CLARK          10
 7839 KING           10
 7934 MILLER         10

in:

第一個(gè)where條件必須給定字段(deptno), 第二個(gè)sql語(yǔ)句中,必須明確給定要查詢的字段是哪個(gè)(deptno).

SQL> select empno,ename,deptno from scott.emp e where  deptno in(select deptno from scott.dept d where e.deptno=d.deptno and d.deptno=10);

EMPNO ENAME      DEPTNO
----- ---------- ------
 7782 CLARK          10
 7839 KING           10
 7934 MILLER         10

 

  oracle 中exists (in)和not exists(not in)是判斷是否存在和不存在表中記錄的關(guān)鍵子.

 請(qǐng)注意:not in 邏輯上不完全等同于not exists,如果你誤用了not in,小心你的程序存在致命的BUG:因此,請(qǐng)盡量不要使用not in(它會(huì)調(diào)用子查詢),而盡量使用not exists(它會(huì)調(diào)用關(guān)聯(lián)子查詢)。

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多