Fonction MySQL ROUND()
Exemple
Arrondir le nombre à 2 décimales :
SELECT ROUND(135.375, 2);
Définition et utilisation
La fonction ROUND() arrondit un nombre à un nombre spécifié de décimales.
Remarque : Voir également les fonctions FLOOR() , CEIL() , CEILING( ) et TRUNCATE() .
Syntaxe
ROUND(number, decimals)
Valeurs des paramètres
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) |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Arrondir le nombre à 0 décimale :
SELECT ROUND(345.156,
0);
Exemple
Arrondissez la colonne Prix (à 1 décimale) dans le tableau "Produits" :
SELECT ProductName, Price, ROUND(Price, 1) AS RoundedPrice
FROM Products;