免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 10748 | 回复: 11
打印 上一主题 下一主题

如何用一条sql语句统计两张表的记录数之和? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-11-18 12:00 |只看该作者 |倒序浏览
如题,请各位指教。

论坛徽章:
0
2 [报告]
发表于 2004-11-18 13:26 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

select sum(cou) from (select count(*) from table_1 union select count(*) from table_2);

论坛徽章:
0
3 [报告]
发表于 2004-11-19 09:35 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

楼上的兄弟在union时应该需要加别名把?

论坛徽章:
0
4 [报告]
发表于 2004-11-19 14:32 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

[quote]原帖由 "zgahj"]select sum(cou) from (select count(*) from table_1 union select count(*) from table_2);[/quote 发表:

如果两张表的记录数相同用union是不对的,因为union会消除重复项,应该用union all代替.


  1. SQL>; select * from testa;

  2.        NUM
  3. ----------
  4.          1
  5.          2

  6. SQL>; select * from testb;

  7.        NUM
  8. ----------
  9.          2
  10.          3

  11. SQL>; select sum(cou) from(select count(*) cou from testa union select count(*) c
  12. ou from testb);

  13.   SUM(COU)
  14. ----------
  15.          2

  16. SQL>; select sum(cou) from(select count(*) cou from testa union all select count(
  17. *) cou from testb);

  18.   SUM(COU)
  19. ----------
  20.          4
复制代码


这样做也行,先union all得到两表的结果集再统计.
  1. SQL>; select count(*) from (select 1 from testa union all select 1 from testb);

  2.   COUNT(*)
  3. ----------
  4.          4
复制代码

论坛徽章:
0
5 [报告]
发表于 2004-11-19 20:36 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

强! 谢谢各位了!

论坛徽章:
0
6 [报告]
发表于 2005-03-02 20:40 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

select (select count(*) from a)+(select count(*) from b) from dual;

论坛徽章:
0
7 [报告]
发表于 2005-03-03 17:04 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

我也顶一下

论坛徽章:
0
8 [报告]
发表于 2005-03-03 17:16 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

[quote]原帖由 "toworm"]select (select count(*) from a)+(select count(*) from b) from dual;[/quote 发表:

还是这种方法好!推荐!顶一下!

论坛徽章:
0
9 [报告]
发表于 2005-03-03 17:21 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

[quote]原帖由 "toworm"]select (select count(*) from a)+(select count(*) from b) from dual;[/quote 发表:

还是这种方法好!推荐!顶一下!

论坛徽章:
0
10 [报告]
发表于 2005-03-03 17:23 |只看该作者

如何用一条sql语句统计两张表的记录数之和?

[quote]原帖由 "toworm"]select (select count(*) from a)+(select count(*) from b) from dual;[/quote 发表:

还是这种方法好!推荐!顶一下!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP