今天遇到乙個問題,格式化浮點數的問題,用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
is0
, 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,達到預期。 mysql小數格式化正確方法
而且,結果驗證還是不正確,查了官方api,終於寫出來了。結果 12,562.67 檢視文件 formats the number x to a format like rounded to d decimal places,and returns the result as a string.if ...
C 小數點格式化
1.tostring 方法 double d 12345678.2334 console.writeline d.tostring f2 1234.23 console.writeline d.tostring 00 12,345,678.23 2.math.round 方法 math.round ...
C 小數點格式化
1.tostring 方法 double d 12345678.2334 console.writeline d.tostring f2 console.writeline d.tostring 00 12,345,678.23 2.math.round 方法 math.round 3.44,1 r...