• Or use the ROLLUP option

    SELECT

    State

    ,ZipCode

    ,Count(Account) AS [Accounts]

    FROM YourTable

    GROUP BY State, ZipCode

    WITH ROLLUP;

    This will give a total for the State (record will be State, NULL, countTotal) and a total for the whole dataset (record will be NULL,NULL,countTotal)