我正在尝试对Redshift中2个不同sql的输出求和。
SQL1:
select count (*) from table1; -- Output : 10
SQL2:
select count (*) from table2; -- Output : 14
我正在尝试建立一个查询,以显示这两个查询的总数。 Expected output : 24
答案 0 :(得分:1)
找到解决方案:
select ((select count(*) from table1) +
(select count(*) from table2)) as count