How to combine two sql queries into one

后端 未结 4 1396
南旧
南旧 2021-01-05 15:36

How can I combine these two SQL statements?

SELECT SUM(hits01 + hits02 + hits03 + hits04 + hits05 + hits06 + hits07 + hits08 + hits09) AS \'AEROwiz\'
FROM tb         


        
4条回答
  •  臣服心动
    2021-01-05 16:13

    SELECT  SUM(hits01 + hits02 + hits03 + hits04 + hits05 + hits06 + 
    hits07 + hits08 + hits09 + t2010.hits10 + t2010.hits11 + t2010.hits12) AS 'AEROwiz'
    FROM tbl_2010 t2010
    JOIN tbl_2011 t2011 ON t2010.appName = t2011.appName
    WHERE t2010.appName='AEROwiz'
    

提交回复
热议问题