gpt4 book ai didi

mysql - 获得总数的工会问题

转载 作者:行者123 更新时间:2023-11-29 05:37:45 24 4
gpt4 key购买 nike

MySql中如何通过查询统计2条select语句的UNION总记录数?

(select name, phone from table1) UNION (select name, phone from table2)

最佳答案

您可以使用派生表:

SELECT COUNT(*)
FROM (
(select name, phone from table1)
UNION
(select name, phone from table2)
) AS combined_table

UPD:这是一个fiddle

关于mysql - 获得总数的工会问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9291592/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com