我如何从两个不同的表(叫他们tab1和tab2)选择计数(*)有作为结果:
Count_1 Count_2
123 456
我试过了:
select count(*) Count_1 from schema.tab1 union all select count(*) Count_2 from schema.tab2
但我所拥有的只有:
Count_1
123
456
我如何从两个不同的表(叫他们tab1和tab2)选择计数(*)有作为结果:
Count_1 Count_2
123 456
我试过了:
select count(*) Count_1 from schema.tab1 union all select count(*) Count_2 from schema.tab2
但我所拥有的只有:
Count_1
123
456
当前回答
如果表(或者至少是一个键列)是相同类型的,那么就先做联合,然后计数。
select count(*)
from (select tab1key as key from schema.tab1
union all
select tab2key as key from schema.tab2
)
或者把你的语句加上另一个和()。
select sum(amount) from
(
select count(*) amount from schema.tab1 union all select count(*) amount from schema.tab2
)
其他回答
因为我找不到其他答案了。
如果你不喜欢子查询并且在每个表中都有主键,你可以这样做:
select count(distinct tab1.id) as count_t1,
count(distinct tab2.id) as count_t2
from tab1, tab2
但是就性能而言,我认为Quassnoi的解决方案更好,也是我会使用的解决方案。
与不同的表进行JOIN
SELECT COUNT(*) FROM (
SELECT DISTINCT table_a.ID FROM table_a JOIN table_c ON table_a.ID = table_c.ID );
select @count = sum(data) from
(
select count(*) as data from #tempregion
union
select count(*) as data from #tempmetro
union
select count(*) as data from #tempcity
union
select count(*) as data from #tempzips
) a
选择 (select count() from tab1 where field like 'value') + (select count() from tab2 where field like 'value') 数
作为附加信息,要在SQL Server中完成同样的事情,您只需要删除查询的“FROM dual”部分。