NULLと空文字列が混在したカラムをどちらかで統一したい
サンプルテーブル
CREATE TABLE #Sample (col1 char(1));
INSERT INTO #Sample (col1) VALUES ('A'), (NULL), ('');
col1 |
---|
'A' |
NULL |
'' |
NULLで統一
UPDATE #Sample
SET col1 = CASE WHEN col1 = '' THEN NULL ELSE col1 END;
col1 |
---|
'A' |
NULL |
NULL |
空文字列で統一
UPDATE #Sample
SET col1 = COALESCE(col1, '');
col1 |
---|
'A' |
'' |
'' |
Author And Source
この問題について(NULLと空文字列が混在したカラムをどちらかで統一したい), 我々は、より多くの情報をここで見つけました https://qiita.com/D-Three/items/d10d16f08e43c9c85f04著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .