MySQL ROUND () Fungsi
Contoh
Bulatkan angka menjadi 2 tempat desimal:
SELECT ROUND(135.375, 2);
Definisi dan Penggunaan
Fungsi ROUND() membulatkan angka ke sejumlah tempat desimal yang ditentukan.
Catatan: Lihat juga fungsi FLOOR() , CEIL() , CEILING() , dan TRUNCATE() .
Sintaksis
ROUND(number, decimals)
Nilai Parameter
Parameter | Description |
---|---|
number | Required. The number to be rounded |
decimals | Optional. The number of decimal places to round number to. If omitted, it returns the integer (no decimals) |
Detail Teknis
Bekerja di: | Dari MySQL 4.0 |
---|
Lebih Banyak Contoh
Contoh
Bulatkan angka ke 0 tempat desimal:
SELECT ROUND(345.156,
0);
Contoh
Bulatkan kolom Harga (sampai 1 desimal) di tabel "Produk":
SELECT ProductName, Price, ROUND(Price, 1) AS RoundedPrice
FROM Products;