SELECT SUM(hits01 + hits02 + hits03 + hits04 + hits05 + hits06 + hits07 + hits08 + hits09) AS 'AEROwiz' FROM tbl_2011 WHERE appName='AEROwiz' UNION ALL SELECT SUM(hits10 + hits11 + hits12) AS 'AEROwiz' FROM tbl_2010 WHERE appName='AEROwiz'
Use UNION ALL as it will allow duplication, and UNION will not put duplicates in the query result. With the SUM() aggregate, I assume there are good chances of duplication, so I would go with UNION ALL for that.
user596075
source share