MySQL:将NULL强制类型转换为0


81

让我们假设下表(例如,几个内部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

Answers:


152

使用IFNULL(column, 0)的列值转换到零。另外,COALESCE函数将执行相同的操作,除了(1)COALESCE是ANSI兼容的,IFNULL不是,并且(2)COALESCE采用任意数量的列/值并返回传递给它的第一个非空值。


和合并可以具有多个值?
ante.sabo

10
是的...所以COALESCE(column1,column2,0)将返回这些值的第一个非null。请记住,这是水平的,而不是垂直的。这些列必须属于同一表行。
David Andres

@rexem:谢谢,您说的很好。非常感激!
David Andres

@David Andres一百万个谢谢。如果我能第二次投票。
故事
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.