mysql统计三个表的数据总数
时间: 2024-05-06 17:22:07 浏览: 129
MySQL数据库实验三
可以使用union all将三个表的数据合并起来,然后再使用count函数统计总数。
示例代码:
```
select count(*) as total from
(select * from table1
union all
select * from table2
union all
select * from table3) as tmp;
```
其中,total为数据总数的别名,table1、table2、table3为三个表的名称。
阅读全文