要知道当前时间,我们可以使用 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的时区?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!