>데이터 베이스 >MySQL 튜토리얼 >mysql格式化小数保留小数点后两位(小数点格式化)_MySQL

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

WBOY
WBOY원래의
2016-06-01 13:25:551084검색

bitsCN.com


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,达到预期。

bitsCN.com
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.