gpt4 book ai didi

php - 如何在 PHP 和 SQL 中添加具有相同 id 的多个列?

转载 作者:行者123 更新时间:2023-11-29 12:33:13 27 4
gpt4 key购买 nike

我的 MySQL 表中有两列,一列称为“Total Experience”,一列称为“id”

有没有办法将总体验值相加并将其放入具有相同 id 的所有用户的变量中?

示例:有 3 个用户:Steve、Jack 和 Sam

Steve has the id of 1 and Total Experience of 500
Jack has the id of 1 and Total Experience of 400
Sam has the id of 2 and Total Experience of 700

有没有办法在 SQL 查询中选择并添加 Steve 和 Jack 的总经验,因为他们具有相同的 id?

最佳答案

使用GROUP BY按列聚合行。

SELECT id, SUM(`Total Experience`) AS experience
FROM YourTable
GROUP BY id

关于php - 如何在 PHP 和 SQL 中添加具有相同 id 的多个列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27175767/

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