MySQL TRUNCATE() Fungsi
Contoh
Kembalikan angka yang terpotong ke 2 tempat desimal:
SELECT TRUNCATE(135.375, 2);
Definisi dan Penggunaan
Fungsi TRUNCATE() memotong angka ke jumlah tempat desimal yang ditentukan.
Catatan: Lihat juga fungsi FLOOR() , CEIL() , CEILING() , dan ROUND() .
Sintaksis
TRUNCATE(number, decimals)
Nilai Parameter
Parameter | Description |
---|---|
number | Required. The number to be truncated |
decimals | Required. The number of decimal places to truncate to |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Kembalikan angka yang terpotong ke 0 tempat desimal:
SELECT TRUNCATE(345.156,
0);