mysql分组groupby统计count后为null改成0
时间: 2024-03-03 21:51:40 浏览: 110
Mysql利用group by分组排序
你可以在使用 COUNT 函数时,将 NULL 值转换为 0。例如:
```
SELECT column1, COUNT(IF(column2 IS NULL, 0, column2)) AS count
FROM your_table
GROUP BY column1;
```
在这个查询中,`IF(column2 IS NULL, 0, column2)` 会将为 NULL 的 `column2` 值转换为 0,这样在使用 COUNT 函数时就不会出现 NULL 值了。
阅读全文