Latest web development tutorials

SQL-Format () Funktion

FORMAT () Funktion

FORMAT () Funktion wird verwendet, um das Anzeigefeld zu formatieren.

SQL-Format () Syntax

SELECT FORMAT(column_name,format) FROM table_name;

参数 描述
column_name 必需。要格式化的字段。
format 必需。规定格式。


Die Demo-Datenbank

In diesem Tutorial werden wir w3big Beispieldatenbank verwenden.

Hier finden Sie eine ausgewählte "Websites" Tabellendaten:

+----+--------------+---------------------------+-------+---------+
| id | name         | url                       | alexa | country |
+----+--------------+---------------------------+-------+---------+
| 1  | Google       | https://www.google.cm/    | 1     | USA     |
| 2  | 淘宝          | https://www.taobao.com/   | 13    | CN      |
| 3  | 本教程      | http://www.w3big.com/    | 4689  | CN      |
| 4  | 微博          | http://weibo.com/         | 20    | CN      |
| 5  | Facebook     | https://www.facebook.com/ | 3     | USA     |
| 7  | stackoverflow | http://stackoverflow.com/ |   0 | IND     |
+----+---------------+---------------------------+-------+---------+


SQL-Format () Beispiele

Die folgende SQL-Anweisung select name aus der "Websites" Liste, URL und Format JJJJ-MM-DD Datum:

Beispiele

SELECT name, url, DATE_FORMAT (Now (), '% Y-% m-% d') AS Datum
Von Webseiten;

Ausführen der obigen SQL Ausgabeergebnisse sind wie folgt: