col1 col2 col3
1 a null b
就是类似上面那样的,如何统计出第一行中列不为空的个数呢?请高手赐教
1 回答
互换的青春
TA贡献1797条经验 获得超6个赞
select case
when col1 IS null then 1
end +
when col2 IS null then 1
end +case
when col3 IS null then 1
end from Table
- 1 回答
- 0 关注
- 1773 浏览
添加回答
举报
0/150
提交
取消