- 论坛徽章:
- 0
|
如何用一条sql语句统计两张表的记录数之和?
[quote]原帖由 "zgahj"]select sum(cou) from (select count(*) from table_1 union select count(*) from table_2);[/quote 发表:
如果两张表的记录数相同用union是不对的,因为union会消除重复项,应该用union all代替.
- SQL>; select * from testa;
- NUM
- ----------
- 1
- 2
- SQL>; select * from testb;
- NUM
- ----------
- 2
- 3
- SQL>; select sum(cou) from(select count(*) cou from testa union select count(*) c
- ou from testb);
- SUM(COU)
- ----------
- 2
- SQL>; select sum(cou) from(select count(*) cou from testa union all select count(
- *) cou from testb);
- SUM(COU)
- ----------
- 4
复制代码
这样做也行,先union all得到两表的结果集再统计.
- SQL>; select count(*) from (select 1 from testa union all select 1 from testb);
- COUNT(*)
- ----------
- 4
复制代码 |
|