SQL UPDATE,但仅当旧值为null时

时间:2011-01-26 15:14:55

标签: sql null sql-update

我一直在使用这样的sql来更新我的数据库中的属性列表:

update my_table set a = ?, b = ?, c = ?, d = ?,  where customer = ?

但是我想要仅在数据库中没有值的情况下更新具有新值的属性。我怎么能这样做?

7 个答案:

答案 0 :(得分:23)

在MS SQL中,这样的事情(假设非值意味着数据库NULL)应该起作用:

update 
  my_table 
set 
  a = COALESCE(a, ?), 
  b = COALESCE(b, ?), 
  c = COALESCE(c, ?), 
  d = COALESCE(d, ?)
where 
  customer = ?

COALESCE()从其参数返回第一个非空值。

答案 1 :(得分:3)

如果您使用的是oracle:

update my_table 
   set a = nvl(a, new_a_value),
       b = nvl(b, new_b_value),
       c = nvl(c, new_c_value),
       d = nvl(d, new_d_value),
 where customer = ?

如果您不使用Oracle,请使用您正在使用的RDBMS更新问题,或在数据库中查找类似nvl的函数。

答案 2 :(得分:2)

如果您正在谈论在行中每场的字段上执行此操作:

update my_table
set a = coalesce(a, ?),
    b = coalesce(b, ?),
    c = coalesce(c, ?)
where customer = ?

答案 3 :(得分:2)

在MySQL中,您可以这样做:

UPDATE my_table 
SET
a = IFNULL(a, ?),
b = IFNULL(b, ?),
c = IFNULL(c, ?),
d = IFNULL(d, ?)
where customer = ?

答案 4 :(得分:1)

update YourTable
    set a = coalesce(a, NewValueA),
        b = coalesce(b, NewValueB),
        ...
    where customer = ?

答案 5 :(得分:1)

在查询中使用“is null”或“is not null”的组合,即

更新my_table设置a =?客户=?并且a为空

当然,这仅适用于null为合法值的列。实际上很难确切知道哪些查询对你有用,而不知道各列的约束。

答案 6 :(得分:0)

尝试使用此代码 SQL 本地代码非常适合我:

UPDATE table 
SET field = 'NO'
WHERE field 
IS NULL
OR field = ''

仅更新 NULL 值或清空。