復制代碼 代碼如下:
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,達到預期。