标签: sql postgresql
有人知道如何在PostgreSQL中填充空值吗? 例如,将Null值替换为X
column A B Null C D Null
应为:
column A B x C D x
答案 0 :(得分:1)
如果列为null,则可以使用coalesce()返回不同的值
null
coalesce()
select coalesce(the_column, 'x') as the_column from the_table;