更新MySQL中的多个列,但仅当值不为空时才更新

时间:2015-10-02 22:53:12

标签: mysql sql-update nul

我有一个包含多个列A,B和C的MySQL表。

我想只使用一个SQL语句来更新这些列。但是,有时某些列可能为null。

因此,如果A为null,则只更新B和C.

如果A和B为空,则仅更新C.

依此类推,与所有其他组合一起使用。

我怎样才能在一个声明中做到这一点?

感谢。

2 个答案:

答案 0 :(得分:5)

您可以在更新条款中使用if:

update test_update set A=if(A is null, null, 'A2'), B=if(B is null, null, 'B2'), C=if(C is null, null, 'C2');

示例运行:

MariaDB [test]> select * from test_update;
+------+------+------+
| A    | B    | C    |
+------+------+------+
| A1   | NULL | NULL |
| NULL | B1   | NULL |
| NULL | NULL | C1   |
| A1   | B1   | NULL |
| A1   | NULL | C1   |
| NULL | B1   | C1   |
| A1   | B1   | C1   |
+------+------+------+
7 rows in set (0.00 sec)

MariaDB [test]> update test_update set A=if(A is null, null, 'A2'), B=if(B is null, null, 'B2'), C=if(C is null, null, 'C2');
Query OK, 7 rows affected (0.00 sec)
Rows matched: 7  Changed: 7  Warnings: 0

MariaDB [test]> select * from test_update;
+------+------+------+
| A    | B    | C    |
+------+------+------+
| A2   | NULL | NULL |
| NULL | B2   | NULL |
| NULL | NULL | C2   |
| A2   | B2   | NULL |
| A2   | NULL | C2   |
| NULL | B2   | C2   |
| A2   | B2   | C2   |
+------+------+------+
7 rows in set (0.00 sec)

答案 1 :(得分:1)

您想要仅更新非NULL值似乎很奇怪,但这就是您编写语句的方式。我会把它写成:

update test_update
    set A = (case when A is not null then 'A' end),
        B = (case when B is not null then 'B' end),
        C = (case when C is not null then 'C' end)
     where A is not null or B is not null or C is not null;

当然,常量字符串是您想要的任何新值。