mysql格式化小数保留小数点后两位(小数点格式化)
代码如下:
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,达到预期。
相关推荐
RealJianyuan 2020-06-14
秒懂数学 2014-01-26
xiaoge00 2019-10-19
dreamjava 2014-07-08
ykmail 2019-08-19
joyleeLyhua 2009-09-02
我壮壮壮 2019-07-01
一只懒虫 2016-08-18
xiahanss 2011-11-30
zluxingzhe 2019-06-27
xiaocaibai 2014-07-08
秒懂数学 2014-01-26
libowen0 2019-06-26
pfpfpfpfpf 2010-04-21
伊文硕Oracle 2013-03-21