在 MySQL 中用 0 替换 null

2022-01-06 00:00:00 sql null mysql

我在 MySQL 的操作结果中得到 NULL 值.

I am getting NULL values in the results of an operation in MySQL.

有没有办法将 NULL 值转换为值 0?

Is there a way to convert the NULL values into the value 0?

推荐答案

是的,通过使用 COALESCE.

SELECT COALESCE(null_column, 0) AS null_column FROM whatever;

COALESCE 遍历您给它的值列表,并返回第一个非空值.

COALESCE goes through the list of values you give it, and returns the first non-null value.

相关文章