gpt4 book ai didi

php - 在 SQL 查询中进行计算以选择具有评级的记录

转载 作者:行者123 更新时间:2023-12-01 00:11:09 24 4
gpt4 key购买 nike

我的数据是这样设置的:

-------------------------------
|id|name|vote_count|vote_score|
|1 |Jim |9 |14 |
|2 |Bert|8 |17 |
|3 |Bob |43 |45 |
|4 |Will|1 |5 |
-------------------------------

您可以通过这样做计算出用户得分:

$score = round($result['vote_score'] / $result['vote_count'], 2);

是否可以执行 SQL 查询以仅获取得分为 3 或更高的用户?

最佳答案

你的意思是:

select * from users where round(vote_score / vote_count, 2) >= 3;

?

关于php - 在 SQL 查询中进行计算以选择具有评级的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17950060/

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