MySQL FORMAT()関数
例
数値を「#、###、###。##」としてフォーマットします(小数点以下第2位で四捨五入します)。
SELECT FORMAT(250500.5634, 2);
定義と使用法
FORMAT()関数は、数値を「#、###、###。##」のような形式にフォーマットし、指定された小数点以下の桁数に丸めて、結果を文字列として返します。
構文
FORMAT(number, decimal_places)
パラメータ値
Parameter | Description |
---|---|
number | Required. The number to be formatted |
decimal_places | Required. The number of decimal places for number. If this parameter is 0, this function returns a string with no decimal places |
技術的な詳細
で動作します: | MySQL4.0から |
---|
その他の例
例
数値を「#、###、###。##」の形式としてフォーマットします(小数点以下0桁で四捨五入します)。
SELECT FORMAT(250500.5634, 0);