Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Wie formatiere ich Zahlen so, dass sie nur zwei Dezimalstellen haben?

Versuchen Sie in PHP number_format :

$n = 1234.5678;

// Two decimal places, using '.' for the decimal separator
// and ',' for the thousands separator.
$formatted = number_format($n, 2, '.', ',');
// 1,234.57