gpt4 book ai didi

php - MySQL 查询求和所有不同的值

转载 作者:行者123 更新时间:2023-11-29 05:32:46 25 4
gpt4 key购买 nike

我有一张 table :

uid_from uid_to count
x1 x2 3
x3 x2 5
x8 x1 99
x9 x1 1

并且想要生成这样的求和表:

uid_to   sum
x1 100
x2 8

我可以在 PHP 中完成,但更愿意直接在 MySQL 查询中完成。我应该注意到该表有 7 亿行。

最佳答案

select uid_to, sum(count) as sum
from your_table
group by uid_to

关于php - MySQL 查询求和所有不同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13348244/

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