我需要编写一个查询,返回配置单元表中每列的空字段数如:
col1|col2|col3 ---------------- NULL|a |b NULL|a |b e |NULL|f
对于上表,查询应返回2 1 0。有人帮忙吗??
pw9qyyiw1#
select sum(if(col1 is null, 1, 0)), sum(if(col2 is null, 1, 0)), sum(if(col3 is null, 1, 0)) from mytable
1条答案
按热度按时间pw9qyyiw1#