MySQL Queries for Grouping Data By Year

A big request we had in designing our new system was an easier way for users to get data from the database. With the large amounts of data that we use across dozens of tables it can be slow going to use the Django methods. Instead they have given the ability to use and write raw SQL and use that result how you please. You can read about using cursors here, I may do a post in the future about them but today I want to focus on the SQL we wrote and the problems we encountered. The requested query was to get a list of customers, how much business we did with them, and break that up by year. The year could be inputted by the user so it needed to be dynamic enough to scale. The first way we tried was to create a temporary table for every year needed. Each table was created from a SELECT statement that was specified for the office as well as the year. Below is the SQL command for one of the offices and years but you can imagine we copied this code, almost verbatim, but changed the SELECT statement to get the correct data.
DROP TABLE IF EXISTS mainoffice%s;
CREATE TEMPORARY TABLE mainoffice%s
SELECT
  company
  , COUNT() AS count
  , client_id
FROM
  WorkOrders
WHERE
  (YEAR(DateArrived) = YEAR(DATE_SUB(CURDATE(), INTERVAL %s YEAR)))
  AND
  office = 'Main'
GROUP BY
  client_id
ORDER BY
  COUNT() DESC
;

...Other Office Tables and Queries...

SELECT
  mainoffice%s.name AS name
  , mainoffice%s.count AS count
  , slcoffice%s.count AS slcoffice%s_count
  , choffice%s.count AS choffice%s_count
  , xsoffice%s.count AS xsoffice%s_count
  , tpoffice%s.count AS tpoffice%s_count
  , mainoffice%s.client_id AS client_id
FROM
  mainoffice%s
LEFT JOIN slcoffice%s
  ON mainoffice%s.client_id = slcoffice%s.client_id
LEFT JOIN choffice%s
  ON mainoffice%s.client_id = choffice%s.client_id
LEFT JOIN xsoffice%s
  ON mainoffice%s.client_id = xsoffice%s.client_id
LEFT JOIN tpoffice%s
  ON mainoffice%s.client_id = tpoffice%s.client_id
ORDER BY
  mainoffice%s.count DESC
;
Once all of these tables were created we had to do a ton of LEFT JOINs against the main office to get the split of the total between the other offices. Needless to say this ran very slowly. Using Python to change the %s to a year a typical loop through creating the tables, gathering the data, and returning took roughly 16 seconds. Yeah, not good. The good part was that it automatically put everything into one line for each client and one column for every office total and annual total. Obviously we had to cut down on the time. By changing how we did our whole process we can cut the time down significantly without using JOINs. Now this may not work in perfectly raw SQL because we are saving the output to a variable and then combining them. Below is the new SQL code again changing the first one for each office. The difference here is that instead of doing a table and SELECT for every year we are doing one SELECT for all the years and creating a row for each annual total. So requesting data 5 years back could give a possible five rows for each customer, one for every year.
SELECT
  company
  , COUNT() AS count
  , client_id
  , YEAR(DateArrived) AS year
FROM
  WorkOrders
WHERE
  (YEAR(DateArrived) BETWEEN YEAR(DATE_SUB(CURDATE(), INTERVAL %s YEAR)) AND YEAR(CURDATE()))
AND
  office = 'Main'
GROUP BY
  client_id
  , YEAR(DateArrived)
ORDER BY
  COUNT() DESC
;

...Other Office Queries...
After every select we save the output to a variable named for the office. In Python these are saved as lists of dictionaries. In the end we combine the lists and then create an output of the combined totals. I wrote an algorithm to loop through the giant list and adding the data to an output dictionary that had only one entry for each client.
all_data = all_data + slc_data + ch_data + xs_data + tp_data
    output = SortedDict()
    for company in all_data:
        #Set variables for easy access
        name = company['name']
        year = company['year']

        #Figure out office prefix
        prefix = ''
        if 'slccount' in company:
            prefix = 'slc'
        elif 'chcount' in company:
            prefix = 'ch'
        elif 'xscount' in company:
            prefix = 'xs'
        elif 'tpcount' in company:
            prefix = 'tp'

        #Get count and add company to output if not there already
        count = company['%scount' % prefix]
        if not name in output:
            client_id = company['client_id']
            output[name] = {'client_id':clientid}

        #Add data to output company
        output[name]['%scount%s' % (prefix, year)] = company['%scount' % prefix]
By changing the way that we create the tables we were able to cut that time to ~5 seconds. It's a lot of data so it takes some time but 1/3 the last time is a big improvement. Obviously this code won't work in just SQL but it is useful for Django cursors. If there is a way to accomplish what we are doing, in a very fast query I would totally be up for hearing about it in the comments. I have altered our actual MySQL statements to be more readable. In the end we just wanted a list of clients and the total work orders done for a year as well as the total for each office for that year. Our solution works and we are fairly happy with it. Always room for improvement though.