要知道目前時間,我們可以使用 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中文網其他相關文章!