让我们假设下表(例如,几个内部join语句的结果):
id | column_1 | column_2 ------------------------ 1 | 1 | 2 | 2 | 2 3 | | 3
例如,您可以从以下语句中获取:
select a.id, t1.column_1, t2.column_2 from a left join t1 on a.id = t1.id left join t2 on a.id = t2.id
现在,如果我想将t1.column_1和t2.column_2总结如下
select a.id, t1.column_1, t2.column_2, (t1.column_1 + t2.column_2) as cumulated from a left join t1 on a.id = t1.id left join t2 on a.id = t2.id
结果显示如下:
id | column_1 | column_2 | cumulated ------------------------------------ 1 | 1 | NULL | NULL 2 | 2 | 2 | 4 3 | NULL | 3 | NULL
我的问题基本上是:有没有一种方法可以将NULL类型转换为0以便进行一些数学运算?
我曾尝试CONVERT(t1.column_1, SIGNED)和CAST(t1.column_1 as SIGNED),而是NULL保持一个NULL。
CONVERT(t1.column_1, SIGNED)
CAST(t1.column_1 as SIGNED)
NULL
使用IFNULL(column, 0)的列值转换到零。或者,COALESCE函数将执行相同的操作,除了(1)COALESCE符合ANSI标准,IFNULL不兼容,以及(2)COALESCE采用任意数量的列/值并返回传递给它的第一个非空值。
IFNULL(column, 0)
COALESCE
IFNULL