您当前的位置:首页 > 计算机 > 软件应用 > 数据库 > MySQL

mysql统计多张表中的总数

时间:09-19来源:作者:点击数:

需求:mysql统计多张表中的总数

因为需求不明确,答案有三种:

答案1:

select sum(a) from (select count(*) a from tb1 union select count(*) a from tb2 union select count(*) a from tb3) as tb;

答案2:

select count(*) a from tb1 union select count(*) b from tb2 union select count(*) c from tb3;

答案3:

select a.countNum,b.countNum,c.countNum

from(

    (select COUNT(*) as countNum from tb1) a,

    (select COUNT(*) as countNum from tb2) b,

    (select COUNT(*) as countNum from tb3) c

)

方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门
本栏推荐