I need some help with my query...I am trying to get a count of names in each house, all the col#'s are names.
Query:
SELECT House#,
    COUNT(CASE WHEN col#1 IS NOT NULL THEN 1 ELSE 0 END) + 
    COUNT(CASE WHEN col#2 IS NOT NULL THEN 1 ELSE 0 END) +
    COUNT(CASE WHEN col#3 IS NOT NULL THEN 1 ELSE 0 END) as count
  FROM myDB
 WHERE House# in (house#1,house#2,house#3)
 GROUP BY House#
Desired results:
house 1 - the count is 3 / house 2 - the count is 2 / house 3 - the count is 1
...with my current query the results for count would be just 3's
 
     
     
     
     
     
     
    