gpt4 book ai didi

mysql - 从 2 个数据库表列计算平均值

转载 作者:行者123 更新时间:2023-11-29 03:52:19 24 4
gpt4 key购买 nike

我正在尝试根据 MySQL 中 2 个表列的值计算平均值。

假设我有这个表结构:

id | user_id | first_score | last_score
1 | 1 | 10 | 60
2 | 1 | 70 | 10
3 | 1 | 100 | NULL

我在这里想要实现的是计算最高值(即 60、70、100)的 AVG。但是看到他们在不同的列中,不确定如何去做..

最佳答案

select avg(GREATEST(first_score , last_score))
from the_table

关于mysql - 从 2 个数据库表列计算平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23216709/

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