• As pointed out previously, COUNT(column1) eliminates NULLs from the final result set, per the ANSI SQL-92 standard.  COUNT(*) does not.  Try this instead:

    Select Count(*), PremiumGroup From RetireePremiums

    Group by PremiumGroup

    Order by PremiumGroup