SQL La fonction Format ()


SQL FORMAT () Fonction

La fonction Format ()

La fonction FORMAT () est utilisé pour formater comment un champ doit être affiché.

FORMAT SQL () Syntaxe

SELECT FORMAT(column_name,format) FROM table_name

ParamètreDescription
column_nameNécessaire. Le champ doit être formaté.
formatNécessaire. Spécifie le format.


FORMAT SQL () Exemple

Nous avons ce qui suit table "Produits":
Prod_idProductNameUnitéUnitPrice
1Jarlsberg1000 g10,45
2Mascarpone1000 g32,56
3Gorgonzola1000 g15,67
Maintenant, nous voulons afficher les produits et les prix par date d'aujourd'hui (avec la date du jour s'affiche dans le format suivant: "AAAA-MM-JJ").
On utilise l'instruction SELECT suivante:
SELECT ProductName, UnitPrice, FORMAT(Now(),'YYYY-MM-DD') as PerDate
FROM Products
L'ensemble de résultats se présente comme suit:
ProductNameUnitPricePerDate
Jarlsberg10,4507/10/2008
Mascarpone32,5607/10/2008
Gorgonzola15,6707/10/2008

0 commentaires:

Post a Comment

HELLO VISITORS THANKS FOR YOUR VISIT AND COMMENT