当我执行
select max(column) from mytable;
并且我的表没有行,它返回null。我如何修改此选择语句,使其返回零?
select coalesce(max(column), 0) from mytable;