gpt4 book ai didi

mysql - 精确到小数点后 2 位

转载 作者:太空宇宙 更新时间:2023-11-03 12:13:49 24 4
gpt4 key购买 nike

我这里有这行查询

if (type = 1,

(IF(ISNULL(users),
'',
((SUM(actual) / 1) * 0.04/12) * if(users = "user", booked/(36/12),'')
))

,
'false')

示例输出为 123.3333333

我希望它只输出 2 位小数,所以它就像 123.33 我应该在哪里放置 Truncate 或 Round 命令?

谢谢!

最佳答案

怎么样:

if (type = 1,
(IF(ISNULL(users), '', ROUND(((SUM(actual) / 1) * 0.04/12) * if(users_0.user_name = "user", booked/(36/12),''),2)))
, 'false')

关于mysql - 精确到小数点后 2 位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23061851/

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