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

当前回答

我的经验是使用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   tab1
        ) AS count1,
        (
        SELECT COUNT(*)
        FROM   tab2
        ) AS count2
FROM    dual

这是我的分享

选项1 -计数从相同的域从不同的表

select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain1.table2) "count2" 
from domain1.table1, domain1.table2;

选项2 -同一表从不同的域计数

select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain2.table1) "count2" 
from domain1.table1, domain2.table1;

选项3 -计数从不同的领域为同一表与“联合所有”有行计数

select 'domain 1'"domain", count(*) 
from domain1.table1 
union all 
select 'domain 2', count(*) 
from domain2.table1;

享受SQL,我总是这样做:)

SELECT  (
        SELECT COUNT(*)
        FROM   tbl1
        )
        +
        (
        SELECT COUNT(*)
        FROM   tbl2
        ) 
    as TotalCount

只是因为它略有不同:

SELECT 'table_1' AS table_name, COUNT(*) FROM table_1
UNION
SELECT 'table_2' AS table_name, COUNT(*) FROM table_2
UNION
SELECT 'table_3' AS table_name, COUNT(*) FROM table_3

它给出了转置的答案(每个表一行而不是一列),否则我不认为它有多大不同。我认为在性能方面,它们应该是相等的。