91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

NULL的陷阱:Merge

發布時間:2020-07-08 11:30:59 來源:網絡 閱讀:662 作者:胡壯壯 欄目:網絡安全

    

NULL表示unknown,不確定值,所以任何值(包括null值)和NULL值比較都是不可知的,在on子句,where子句,Merge或case的when子句中,任何值和null比較的結果都是false,這就是NULL設下的陷阱,我被坑過。

有一次,我使用Merge同步數據,由于target表中存在null值,雖然在source表中對null值做過處理,但是忽略了target表中的null值,導致數據merge失敗。

step1,創建示例數據

NULL的陷阱:Merge

--create source tablecreate table dbo.dt_source
(
id int null,
code int null)on [primary]with(data_compression=page)--create target tablecreate table dbo.dt_target
(
id int null,
code int null)on [primary]with(data_compression=page)

NULL的陷阱:Merge

step2,插入示例數據

示例數據中,Source表和Target表中都存在null值,不管是在Source表,還是在Target表,都要避免和null值進行比較。

NULL的陷阱:Merge

--insert data into tableinsert into dbo.dt_source(id,code)values(1,1),(2,2),(3,null)insert into dbo.dt_target(id,code)values(1,1),(2,null)

NULL的陷阱:Merge


step3,錯誤寫法:只處理Source表中的null,而忽略Target表中的null

NULL的陷阱:Merge

-- -1 stand for unknwon valuemerge dbo.dt_target t
using dbo.dt_source s    on t.id=s.idwhen matched and( t.code<>isnull(s.code,-1))    then update
        set t.code=s.codewhen not matched    then insert(id,code)    values(s.id,s.code);

NULL的陷阱:Merge

查看Target和Srouce表中的數據,數據不同步,不同步的原因是when matched子句之后的and 條件, t.code中存在null值,null值和任何值(包括null值)比較的結果都是unknown,在when子句中視為false。

NULL的陷阱:Merge

正確寫法1,不管是在target表,還是在source表,只要存在null值,必須進行處理,避免出現和null進行比較的情況。

處理的方式是使用一個值來表示unknwon,如果ID列有效值不可能是負值,那么可以使用-1來代替unknown。因為-1和-1 是相等的,邏輯上就將null值和null值視為相同。

NULL的陷阱:Merge

-- -1 stand for unknwon valuemerge dbo.dt_target t
using dbo.dt_source s    on t.id=s.idwhen matched and( isnull(t.code,-1)<>isnull(s.code,-1))    then update
        set t.code=s.codewhen not matched    then insert(id,code)    values(s.id,s.code);

NULL的陷阱:Merge

正確寫法2,在條件子句中,使用is null或 is not null來處理null值。

Tsql 使用is null和is not null來確實是,不是 null。 null is null 的邏輯值是true,other_value is null 為false, other_value is not null 為true。

NULL的陷阱:Merge

merge dbo.dt_target t
using dbo.dt_source s    on t.id=s.idwhen matched and( t.code<>s.code or t.code is null or s.code is null)    then update
        set t.code=s.codewhen not matched    then insert(id,code)    values(s.id,s.code);

NULL的陷阱:Merge

 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜康市| 南投县| 咸阳市| 黄浦区| 镶黄旗| 梨树县| 绥阳县| 宁晋县| 金乡县| 金门县| 姚安县| 伊金霍洛旗| 罗田县| 扎囊县| 徐水县| 霸州市| 专栏| 南京市| 盐城市| 富民县| 平罗县| 太谷县| 伊宁县| 雅安市| 米易县| 宁津县| 黄山市| 桦甸市| 平果县| 海安县| 天峻县| 巨野县| 乐清市| 达日县| 项城市| 万全县| 万年县| 衡东县| 高清| 洛阳市| 田东县|