gpt4 book ai didi

MySQL:在 my.cnf 选项文件中设置 time_zone

转载 作者:IT老高 更新时间:2023-10-29 00:03:49 28 4
gpt4 key购买 nike

在 MySQL 中,您可以设置一个名为 time_zone 的 session 变量来更改时区。这很有用,例如查看来自另一个国家/地区的时间戳时。这是一个例子:

mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2010-12-30 18:59:18 |
+---------------------+
1 row in set (0.00 sec)

mysql> set time_zone='Brazil/East';
Query OK, 0 rows affected (0.00 sec)

mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2010-12-30 09:59:29 |
+---------------------+
1 row in set (0.00 sec)

是否可以将其放在选项文件中,例如.my.cnf ?

当我尝试时,它不起作用。我得到的只是:

mysql: unknown variable 'time_zone=Brazil/East'

最佳答案

应该是

default_time_zone=Brazil/East

详情:http://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_time_zone

Option-File Format = default_time_zone

关于MySQL:在 my.cnf 选项文件中设置 time_zone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4562456/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com