我如何从两个不同的表(叫他们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

当前回答

与不同的表进行JOIN

SELECT COUNT(*) FROM (  
SELECT DISTINCT table_a.ID  FROM table_a JOIN table_c ON table_a.ID  = table_c.ID   );

其他回答

我的经验是使用SQL Server,但是你能做到:

select (select count(*) from table1) as count1,
  (select count(*) from table2) as count2

在SQL Server我得到的结果,你是后。

因为我找不到其他答案了。

如果你不喜欢子查询并且在每个表中都有主键,你可以这样做:

select count(distinct tab1.id) as count_t1,
       count(distinct tab2.id) as count_t2
    from tab1, tab2

但是就性能而言,我认为Quassnoi的解决方案更好,也是我会使用的解决方案。

我很快想到了:

Select (select count(*) from Table1) as Count1, (select count(*) from Table2) as Count2

注意:我在SQL Server中测试了这个,所以从Dual是不必要的(因此存在差异)。

其他略有不同的方法:

with t1_count as (select count(*) c1 from t1),
     t2_count as (select count(*) c2 from t2)
select c1,
       c2
from   t1_count,
       t2_count
/

select c1,
       c2
from   (select count(*) c1 from t1) t1_count,
       (select count(*) c2 from t2) t2_count
/
SELECT  (
        SELECT COUNT(*)
        FROM   tbl1
        )
        +
        (
        SELECT COUNT(*)
        FROM   tbl2
        ) 
    as TotalCount