首頁  >  文章  >  資料庫  >  如何設定MySQL的時區?

如何設定MySQL的時區?

WBOY
WBOY轉載
2023-08-26 11:05:021321瀏覽

如何設定MySQL的時區?

要知道目前時間,我們可以使用 now() 函數和 SELECT 語句。查詢是 如下 -

mysql> SELECT now();

執行上述查詢後,我們將獲得當前時間。以下是輸出-

+---------------------+
| now()               |
+---------------------+
| 2018-10-06 12:57:25 |
+---------------------+
1 row in set (0.02 sec)

To set the time zone, we can use the command SET. The syntax is 如下-

mysql> SET time_zone = "Some value";

Now I am applying the above query to set the time zone. The query is 如下-

mysql> SET time_zone = "+9:50";
Query OK, 0 rows affected (0.00 sec)

我們也可以藉助SET 指令進行全域設定-

mysql> set global time_zone="+9:00";
Query OK, 0 rows affected (0.00 sec)

以上是如何設定MySQL的時區?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除