如何在mysql中仅当数字不四舍五入时才获取小数
我试图获取一个格式为具有 2 位小数(如果该数字不是整数)的数字,如果该数字是整数则没有任何小数。目前我正在使用以下查询
SELECT round(SUM(number),2) as Numb FROM table
,我得到像 1.00 这样的数字,我希望它是 1
I'm trying to get a number formated as having 2 decimals if the number is not an integer and not having any if the number is an integer. Currently I'm using the following query
SELECT round(SUM(number),2) as Numb FROM table
And I get numbers like 1.00 which I'd like it to be 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用带模数的案例。类似于:
结果:
You'll have to use a case with modulus. Something like:
Results: