gpt4 book ai didi

mysql - 如何将我的 mysql session 设置在某个时区?

转载 作者:可可西里 更新时间:2023-11-01 07:23:49 27 4
gpt4 key购买 nike

由于遍历具有不同时区的多个数据库,我需要动态更改 mysql session 的时区。

如何将 mysql 设置为基于 tiemzone 的所有 mysql 日期相关查询?

最佳答案

您可以使用 SET TIME_ZONE将您的 session 设置为特定的 UTC 偏移量。

例如,我在 UTC -05:00,但我可以像这样更改为 UTC:

mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2011-03-02 12:32:39 |
+---------------------+
1 row in set (0.00 sec)

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

mysql> select now();
+---------------------+
| now() |
+---------------------+
| 2011-03-02 17:32:45 |
+---------------------+
1 row in set (0.00 sec)

关于mysql - 如何将我的 mysql session 设置在某个时区?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5170805/

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