Latest web development tutorials

SQL FORMAT () Fungsi

FORMAT () Fungsi

FORMAT () adalah fungsi yang digunakan untuk memformat bidang display.

SQL FORMAT () sintaks

SELECT FORMAT(column_name,format) FROM table_name;

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


Demo Database

Dalam tutorial ini, kita akan menggunakan database contoh w3big.

Berikut ini adalah yang dipilih "Website" data tabel:

+----+--------------+---------------------------+-------+---------+
| 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 () contoh

Berikut pernyataan SQL pilih nama dari "Website" daftar, url dan diformat sebagai tanggal YYYY-MM-DD:

contoh

Nama SELECT, url, DATE_FORMAT (Now (), '% Y-% m-% d') AS tanggal
DARI Website;

Eksekusi SQL atas hasil output adalah sebagai berikut: