mysql格式化小數保留小數點後兩位(小數點格式化)

cnnbull發表於2021-09-09


複製程式碼 程式碼如下:
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,達到預期。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2524/viewspace-2811034/,如需轉載,請註明出處,否則將追究法律責任。

相關文章