Am I correct in saying:
COUNT(expr) WHERE expr IS NOT *
Will count only non nulls?
Will COUN
COUN
count(*) is not for non-null columns, it's just the way to ask to count all rows. Roughly equivalent to count(1).
count(*)
count(1)