公司主營(yíng)業(yè)務(wù):成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、外貿(mào)網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶(hù)真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。成都創(chuàng)新互聯(lián)公司是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶(hù)帶來(lái)驚喜。成都創(chuàng)新互聯(lián)公司推出新野免費(fèi)做網(wǎng)站回饋大家。
NULL表示unknown,不確定值,所以任何值(包括null值)和NULL值比較都是不可知的,在on子句,where子句,Merge或case的when子句中,任何值和null比較的結(jié)果都是false,這就是NULL設(shè)下的陷阱,我被坑過(guò)。
有一次,我使用Merge同步數(shù)據(jù),由于target表中存在null值,雖然在source表中對(duì)null值做過(guò)處理,但是忽略了target表中的null值,導(dǎo)致數(shù)據(jù)merge失敗。
step1,創(chuàng)建示例數(shù)據(jù)
--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)
step2,插入示例數(shù)據(jù)
示例數(shù)據(jù)中,Source表和Target表中都存在null值,不管是在Source表,還是在Target表,都要避免和null值進(jìn)行比較。
--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)
step3,錯(cuò)誤寫(xiě)法:只處理Source表中的null,而忽略Target表中的null
-- -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);
查看Target和Srouce表中的數(shù)據(jù),數(shù)據(jù)不同步,不同步的原因是when matched子句之后的and 條件, t.code中存在null值,null值和任何值(包括null值)比較的結(jié)果都是unknown,在when子句中視為false。
正確寫(xiě)法1,不管是在target表,還是在source表,只要存在null值,必須進(jìn)行處理,避免出現(xiàn)和null進(jìn)行比較的情況。
處理的方式是使用一個(gè)值來(lái)表示unknwon,如果ID列有效值不可能是負(fù)值,那么可以使用-1來(lái)代替unknown。因?yàn)?1和-1 是相等的,邏輯上就將null值和null值視為相同。
-- -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);
正確寫(xiě)法2,在條件子句中,使用is null或 is not null來(lái)處理null值。
Tsql 使用is null和is not null來(lái)確實(shí)是,不是 null。 null is null 的邏輯值是true,other_value is null 為false, other_value is not null 為true。
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);
文章標(biāo)題:NULL的陷阱:Merge
轉(zhuǎn)載注明:http://aaarwkj.com/article24/pccsje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、做網(wǎng)站、ChatGPT、網(wǎng)頁(yè)設(shè)計(jì)公司、網(wǎng)站策劃、品牌網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)