col1 col2 col3
1 a null b
就是类似上面那样的,如何统计出第一行中列不为空的个数呢?请高手赐教
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