在postgreSQL中用0替换空整数单元格

时间:2016-11-13 17:48:24

标签: sql postgresql

我有一个观点

Proof.
intros n; induction n; intro a.
 - simpl ; ring.
 - simpl ; rewrite <- IHn ; ring.
Qed.

返回以下内容:

matches_view

如何在postgreSQL中用0替换最后一行中的空列?

1 个答案:

答案 0 :(得分:2)

您可以将COALESCE(<expression>, 0)用于任何案例中的数字列。