This is a nice opportunity to use UNPIVOT if you are on MS SQL Server 2005 or later. First set up some sample data:
create table ColumnCount (
ID char(3) not null,
Value1 int,
Value2 int,
Value3 int
)
insert into ColumnCount(ID,Value1,Value2,Value3)
select '001',10,20,30
union all select '002',20,10,null
union all select '003',10,null,null
union all select '004',10,null,30
union all select '005',null,null,null
I added 005 to the sample data you provided above, to show how to handle the case where all ValueX columns are null.
UNPIVOT "normalizes" the data for you so that you can use COUNT against the rows:
select *
from ColumnCount
unpivot (Value for ValueN in (Value1, Value2, Value3)) as upvt
ID Value ValueN
001 10 Value1
001 20 Value2
001 30 Value3
002 20 Value1
002 10 Value2
003 10 Value1
004 10 Value1
004 30 Value3
Notice that it eliminated the NULL values already, so you do not have to. Unfortunately this means that rows with NULL in all ValueX columns (e.g., ID='005') will not show up if you do a simple count. Instead, gather all ID's in a subquery or CTE like AllIds below:
with ColumnsOnRows as (
select *
from ColumnCount
unpivot (Value for ValueN in (Value1, Value2, Value3)) as upvt
),
AllIds as (
select distinct ID
from ColumnCount
)
select AllIds.ID, count(distinct Value) as totcolumn
from AllIds
left outer join ColumnsOnRows
on ColumnsOnRows.ID = AllIds.ID
group by AllIds.ID
Result:
ID totcolumn
001 3
002 2
003 1
004 2
005 0
COUNT()those rows. – KM. Mar 26 '12 at 16:09