小编典典

将逗号应用于MySQL中的数字字段

mysql

我有一列包含数字。是否可以在带有功能的服务器端以逗号显示数字?还是我需要在客户端使用php脚本?我更喜欢服务器端。

提前致谢。


阅读 272

收藏
2020-05-17

共1个答案

小编典典

只需使用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

?>
2020-05-17