如何将两个sql查询合并为一个

时间:2011-11-01 19:48:48

标签: sql

如何组合这两个SQL语句?

SELECT SUM(hits01 + hits02 + hits03 + hits04 + hits05 + hits06 + hits07 + hits08 + hits09) AS 'AEROwiz'
FROM tbl_2011
WHERE appName='AEROwiz'

SELECT SUM(hits10 + hits11 + hits12) AS 'AEROwiz'
FROM tbl_2010
WHERE appName='AEROwiz'

两个表中都存在hits10,hits11和hits12。

4 个答案:

答案 0 :(得分:7)

使用UNION查询 - 在两个查询之间只填充“UNION”:

SELECT SUM(...) AS AEROWiz
FROM ...

UNION

SELECT SUM(...) AS AEROWiz
FROM ...

更新

将union包装在另一个查询中:

SELECT SUM(AEROWiz)
FROM (
    .... unioned queries here
) AS child

答案 1 :(得分:4)

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' 

使用UNION ALL因为它会允许重复,UNION不会在查询结果中放置重复项。对于SUM()聚合,我猜测复制求和的可能性很大,所以我会选择UNION ALL这个。

答案 2 :(得分:2)

您可以使用两个子选择:

SELECT
(
    SELECT SUM(hits01 + hits02 + hits03 + hits04 + hits05 + hits06 + hits07 + hits08 + hits09)
    FROM tbl_2011
    WHERE appName='AEROwiz'
) T1
+
(
    SELECT SUM(hits10 + hits11 + hits12)
    FROM tbl_2010
    WHERE appName='AEROwiz'
) T2
AS AEROwiz

您可能还需要考虑规范化数据库,以便每年都没有表格。

答案 3 :(得分:0)

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'