How can I combine these two SQL statements?
SELECT SUM(hits01 + hits02 + hits03 + hits04 + hits05 + hits06 + hits07 + hits08 + hits09) AS \'AEROwiz\' FROM tb
Use a UNION query - just stuff "UNION" between the two queries:
SELECT SUM(...) AS AEROWiz FROM ... UNION SELECT SUM(...) AS AEROWiz FROM ...
update
wrap the union in yet another query:
SELECT SUM(AEROWiz) FROM ( .... unioned queries here ) AS child