使用 Oracle 10G
例如,我有一个包含三个字段的表,我想要一个查询来选择它们不为空的每一列的计数。字段名称
----------------------------------
| strTest1 | strTest2 | strTest3 |
----------------------------------
我知道如何分别计算每个人的数量:
select count(*) from tablename where strTest1 is not null
但我想知道是否可以在一个查询中针对所有 3 个字段执行此操作。
谢谢