码迷,mamicode.com
首页 > 数据库 > 详细

mysql格式化小数保留小数点后两位(小数点格式化)

时间:2017-08-09 11:32:26      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:span   int   orm   tom   sel   round   convert   浮点数   问题   

格式化浮点数的问题,用format(col,2)保留两位小数点,出现一个问题,例如下面的语句,后面我们给出解决方法

SELECT FORMAT(12562.6655,2);

 结果:12,562.67

查看文档:Formats the number X to a format like ‘#,###,###.##‘, rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part.整数部分超过三位的时候以逗号分割,并且返回的结果是string类型的。

mysql> SELECT FORMAT(12332.123456, 4);
-> ‘12,332.1235‘
mysql> SELECT FORMAT(12332.1,4);
-> ‘12,332.1000‘
mysql> SELECT FORMAT(12332.2,0);
-> ‘12,332‘
没有达到预期结果,想要的结果不要以逗号分隔,
select truncate(4545.1366,2);

 结果:4545.13,直接截取不四舍五入,还是有问题。

select convert(4545.1366,decimal);

结果:4545.14,达到预期。

补充说明:convert不能四舍五入达到消息,convert的作用和truncate一样,截取小数点后两位。

四舍五入保留小数点后两位:ROUND(X,D)

 

select ROUND(4545.1366,2);

 

结果:4545.15,达到预期。

 

mysql格式化小数保留小数点后两位(小数点格式化)

标签:span   int   orm   tom   sel   round   convert   浮点数   问题   

原文地址:http://www.cnblogs.com/zhuiluoyu/p/7323893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!