PostgreSQL将空值变成零

当我执行

select max(column) from mytable;

并且我的表没有行,它返回null。我如何修改此选择语句,使其返回零?

回答:

select coalesce(max(column), 0) from mytable;

以上是 PostgreSQL将空值变成零 的全部内容, 来源链接: utcz.com/qa/400811.html

回到顶部