您好,登錄后才能下訂單哦!
COALESCE如何正確的在PostgreSQL中使用?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
有這種要求,更新自己本身的字段的某個值進行加或者減
常規(guī)方法:
UPDATE tbl_kintai_print_his SET print_time = now(), print_emp_cd = '000000', times = (select times from tbl_kintai_print_his where kokyaku_cd = '000002' AND sagyo_ymd = '2015-01-30' ) + 1, pattern = '055' , ko_item_1 = 'no.0' , ko_item_2 = 'no.2' , ko_item_3 = 'no.3' , ko_item_4 = 'no.4' , ko_item_5 = 'no.5' WHERE kokyaku_cd = '000002' AND sagyo_ymd = '2015-01-30'
能實現(xiàn),不過效率肯定不高,要進行查詢兩次
pgsql里面提供一個函數(shù)能完成這個操作:
UPDATE tbl_kintai_print_his SET print_time = now(), print_emp_cd = '000000', times = COALESCE (SUM(times),0)+ 1, pattern = '055' , ko_item_1 = 'no.0' , ko_item_2 = 'no.2' , ko_item_3 = 'no.3' , ko_item_4 = 'no.4' , ko_item_5 = 'no.5' WHERE kokyaku_cd = '000002' AND sagyo_ymd = '2015-01-30'
能直接取到上一次的結(jié)果進行添加
二:還有一種用法就是在幾個字段中取值,從前往后,一直取到不為NULL的值為止。
select id , name ,coalesce(Ph_no,Alt_no,Office_no) as contact number from employee
我們可以通過這樣的語句,來得到Ph_no,Alt_no,Office_no這幾個字段中,第一個不存在null的數(shù)值,上面的語句得到
關(guān)于COALESCE如何正確的在PostgreSQL中使用問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。