Neueste Web-Entwicklung Tutorials
 

SQL FORMAT() Function


Die FORMAT() Funktion

Das FORMAT() Funktion wird verwendet , zu formatieren , wie ein Feld angezeigt werden soll.

SQL FORMAT() Syntax

SELECT FORMAT(column_name,format) FROM table_name;
Parameter Beschreibung
column_name Erforderlich. Das Feld formatiert werden.
format Erforderlich. Gibt das Format.

Demo-Datenbank

In diesem Tutorial werden wir die bekannte Beispieldatenbank verwenden.

Nachfolgend finden Sie eine Auswahl aus der "Products" Tabelle:

ProductID ProductName SupplierID CategoryID Unit Price
1 Chais 1 1 10 boxes x 20 bags 18
2 Chang 1 1 24 - 12 oz bottles 19
3 Aniseed Syrup 1 2 12 - 550 ml bottles 10
4 Chef Anton's Cajun Seasoning 2 2 48 - 6 oz jars 21.35
5 Chef Anton's Gumbo Mix 2 2 36 boxes 25

SQL FORMAT() Beispiel

Die folgende SQL - Anweisung wählt den Produktnamen, und den Preis für heute (formatiert wie YYYY-MM-DD) von der "Products" Tabelle:

Beispiel

SELECT ProductName, Price, FORMAT(Now(),'YYYY-MM-DD') AS PerDate
FROM Products;

Versuch es selber "