Help for this page

Select Code to Download


  1. or download this
    -- Put together manually.
    -- Could not see rep for all polls
    ...
    ORDER BY
        Y,
        M;
    
  2. or download this
    --same CTEs, different main query
    SELECT
    ...
        Say.M
    ORDER BY
        Say.M;
    
  3. or download this
    SELECT
        Y,
    ...
    ORDER BY
        Y,
        M;