数字を含む列があります。関数を使用してサーバー側で数字をコンマで表示することは可能ですか? または、phpスクリプトを使用してクライアント側でこれを行う必要がありますか? 私はサーバー側を好みます。
前もって感謝します。
MySQLのFORMAT()
機能を使うだけ
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'
mysql> SELECT FORMAT(12332.2,2,'de_DE');
-> '12.332,20'
またはPHPのnumber_format()
<?php
$number = 1234.56;
// english notation (default)
$english_format_number = number_format($number);
// 1,235
// French notation
$nombre_format_francais = number_format($number, 2, ',', ' ');
// 1 234,56
$number = 1234.5678;
// english notation without thousands separator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57
?>