SQL ROUND () Fonction
La fonction round ()
La fonction ROUND () est utilisée pour arrondir un champ numérique pour le nombre de décimales spécifié.
SQL ROUND () Syntaxe
SELECT ROUND(column_name,decimals) FROM table_name
Paramètre | Description |
---|---|
column_name | Nécessaire. Le champ d'arrondir. |
décimales | Nécessaire. Spécifie le nombre de décimales à être retournés. |
SQL ROUND () Exemple
Nous avons ce qui suit table "Produits":
Prod_id | ProductName | Unité | UnitPrice |
---|---|---|---|
1 | Jarlsberg | 1000 g | 10,45 |
2 | Mascarpone | 1000 g | 32,56 |
3 | Gorgonzola | 1000 g | 15,67 |
Maintenant, nous voulons afficher le nom du produit et le prix arrondi à l'entier le plus proche.
On utilise l'instruction SELECT suivante:
SELECT ProductName, ROUND(UnitPrice,0) as UnitPrice FROM Products
L'ensemble de résultats se présente comme suit:
ProductName | UnitPrice |
---|---|
Jarlsberg | 10 |
Mascarpone | 33 |
Gorgonzola | 16 |
0 commentaires:
Post a Comment
HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT