MySQL FORMAT() Fungsi
Contoh
Format angka sebagai "#,###,###.##" (dan bulatkan dengan dua tempat desimal):
SELECT FORMAT(250500.5634, 2);
Definisi dan Penggunaan
Fungsi FORMAT() memformat angka ke format seperti "#,###,###.##", dibulatkan ke sejumlah tempat desimal tertentu, lalu mengembalikan hasilnya sebagai string.
Sintaksis
FORMAT(number, decimal_places)
Nilai Parameter
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 |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Format angka sebagai format "#,###,###.##" (dan bulatkan dengan 0 tempat desimal):
SELECT FORMAT(250500.5634, 0);