国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發 > 綜合 > 正文

理解NULL如何影響IN和EXITS語句

2024-07-21 02:06:47
字體:
來源:轉載
供稿:網友


從表面上看,in和exits的sql語句是可互換和等效的。然而,它們在處理uull數據時會有很大的差別,并導致不同的結果。問題的根源是在一個oracle數據庫中,一個null值意味著未知變量,所以操作null值的比較函數的結果也是一個未知變量,而且任何返回null的值通常也被忽略。例如,以下查詢都不會返回一行的值:

select 'true' from dual where 1 = null;

select 'true' from dual where 1 != null;

 

只有is null才能返回true,并返回一行:

select 'true' from dual where 1 is null;

select 'true' from dual where null is null;

 

當你選擇使用in,你將會告訴sql選擇一個值并與其它每一值相比較。如果null值存在,將不會返回一行,即使兩個都為null。

select 'true' from dual where null in (null);

select 'true' from dual where (null,null) in ((null,null));

select 'true' from dual where (1,null) in ((1,null));


一個in語句在功能上相當于= any語句:

select 'true' from dual where null = any (null);

select 'true' from dual where (null,null) = any ((null,null));

select 'true' from dual where (1,null) = any ((1,null));

 

當你使用一個exists等效形式的語句,sql將會計算所有行,并忽略子查詢中的值。


select 'true' from dual where exists (select null from dual);

select 'true' from dual where exists (select 0 from dual where null is null);

 

in和exists在邏輯上是相同的。in語句比較由子查詢返回的值,并在輸出查詢中過濾某些行。exists語句比較行的值,并在子查詢中過濾某些行。對于null值的情況,行的結果是相同的。

selectename from emp where empno in (select mgr from emp);

selectename from emp e where exists (select 0 from emp where mgr = e.empno);

 

然而當邏輯被逆向使用,即not in 及not exists時,問題就會產生:

selectename from emp where empno not in (select mgr from emp);

selectename from emp e where not exists (select 0 from emp where mgr =

e.empno);

 

not in語句實質上等同于使用=比較每一值,如果測試為false或者null,結果為比較失敗。例如:

select 'true' from dual where 1 not in (null,2);

select 'true' from dual where 1 != null and 1 != 2;

select 'true' from dual where (1,2) not in ((2,3),(2,null));

select 'true' from dual where (1,null) not in ((1,2),(2,3));


這些查詢不會返回任何一行。第二個查詢語句更為明顯,即1 != null,所以整個where都為false。然而這些查詢語句可變為:

select 'true' from dual where 1 not in (2,3);

select 'true' from dual where 1 != 2 and 1 != 3;

 

你也可以使用not in查詢,只要你保證返回的值不會出現null值:

selectename from emp where empno not in (select mgr from emp where mgr is not

null);

selectename from emp where empno not in (select nvl(mgr,0) from emp);

 

通過理解in,exists, not in,以及not exists之間的差別,當null出現在任一子查詢中時,你可以避免一些常見的問題。

 

scott stephens已經在oracle公司工作大于13年之久,他的工作領域包括技術支持,電子商務,市場開發,以及軟件開發。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 庆云县| 墨脱县| 宁安市| 遂溪县| 西宁市| 东城区| 福海县| 莱芜市| 昌平区| 绥化市| 巴东县| 南木林县| 鄂托克前旗| 平阳县| 小金县| 柯坪县| 武定县| 高碑店市| 五常市| 甘德县| 广东省| 藁城市| 姜堰市| 凤冈县| 桐乡市| 黄浦区| 江山市| 澄迈县| 哈密市| 南和县| 突泉县| 潜山县| 会东县| 公安县| 惠东县| 彰化市| 行唐县| 宁蒗| 买车| 武乡县| 东至县|