gpt4 book ai didi

mysql - 从表格的第一行添加列值并显示另一列

转载 作者:太空宇宙 更新时间:2023-11-03 10:40:41 25 4
gpt4 key购买 nike

我想添加多列并显示另一列。这是我的数据库表:

ID | firstname | lastname | score1 | score2 | score3 
1 | mark | lupez | 5 | 7 | 4
2 | james | cruz | 6 | 3 | 5

我想在每一行中添加 score1、score2 和 score3 并显示如下:

ID | lastname | firsname | total_score |
1 | mark | lupez | 16 |
2 | james | cruz | 14 |

我试着用谷歌搜索并找到答案,但运气不好,虽然我的脑子不灵了。

最佳答案

只需添加分数列:

SELECT ID,
firstname,
lastname,
score1 + score2 + score3 AS total_score
FROM yourTable

关于mysql - 从表格的第一行添加列值并显示另一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39114139/

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