gpt4 book ai didi

mysql - 汇总表 MySQL

转载 作者:行者123 更新时间:2023-11-30 22:10:08 25 4
gpt4 key购买 nike

我的数据库中有 4 个表。 2012,2013,2014,2015.

每一个都是这样布置的:

enter image description here

我想对每年的每个 StartStation 求和:

StartStation         2012  2013   2014  2015
10th & E St NW X Y Z ...
10th & Monroe St NE X Y Z ...
......

谢谢!!

最佳答案

试试这个:

select
t1.startstation,
t1.totalcount `2012`,
t2.totalcount `2013`,
t3.totalcount `2014`,
t4.totalcount `2015`
from test.`2012` t1
join test.`2013` t2 on t2.startstation = t1.startstation
join test.`2014` t3 on t3.startstation = t1.startstation
join test.`2015` t4 on t4.startstation = t1.startstation

关于mysql - 汇总表 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40339330/

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