我有这个 PHP 代码:
订单总数= 216.61(任意)
216.61
$order=sprintf('%0.2f', str_replace(',', '.', $order_total/1.21));
那返回179.02
179.02
我在 where 子句中的查询中需要相同的结果
i.paid < i.order_total/1.21
但在 MySQL 查询中我得到179.016529
179.016529
问题是如何在 MySQL 中获得与 PHP 相同的结果?
慕无忌1623718
相关分类