gpt4 book ai didi

mysql - 使用Mysql计算占总数的百分比

转载 作者:行者123 更新时间:2023-11-30 00:54:37 27 4
gpt4 key购买 nike

我想收取 6.75 英镑或净订单总额的 3% - 以较高者为准。

225 英镑是 3% 的切换点。

这看起来怎么样:

if ($subtotal < 225) return 6.75; //where 6.75 is min charge
if ($subtotal > 225) {
$shipping = ($subtotal /100) * 3; //get 3%
$shipping = ROUND($shipping, 2); //round the figure
return $shipping;
}

谢谢

最佳答案

你可以这样尝试

select IF(subtotal < 225 , 6.75, subtotal*.03) from table

测试如下:

select IF(100 < 225 , 6.75, (100*.03)); // will return 6.75
select IF(300 < 225 , 6.75, (300*.03)); // will return 9

关于mysql - 使用Mysql计算占总数的百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20683829/

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