postgresql将字段为空的值替换为指定值

  1. null 表示缺失的值, '' " "表示空值
    null 参与的表达式运算都返回null
    使用is null 判断是null
    is not null 判断非null
  2. nullif(value1, value2) 如果value1 == value2 返回null
  3. coalesce(arg1, arg2, ...) 返回第一个 不为null的值

所以可以使用如下语句,实现将table中filed为空的记录替换为指定值

update table set filed = COALESCE(NULLIF(trim("filed"), ''), 'value')

你可能感兴趣的:(postgresql将字段为空的值替换为指定值)