Redshift-将两个不同查询的输出总和成一个查询

时间:2019-04-23 00:02:09

标签: amazon-redshift

我正在尝试对Redshift中2个不同sql的输出求和。

SQL1:

select count (*) from table1; -- Output : 10

SQL2:

select count (*) from table2; -- Output : 14

我正在尝试建立一个查询,以显示这两个查询的总数。 Expected output : 24

1 个答案:

答案 0 :(得分:1)

找到解决方案:

select ((select count(*) from table1) +
       (select count(*) from table2)) as count