如何将 MySQL 数据库更改为 UTC?

发布于 2024-10-23 15:08:29 字数 88 浏览 3 评论 0原文

我使用的是 Windows 7,对数据库方面的东西有点陌生。我尝试在 Google 上搜索如何将系统时区更改为 UTC,但文档有些高级,我不太确定如何更改此字段。

I'm on Windows 7 and I'm a bit new to this database stuff. I tried searching on Google for how to change the timezone from my system to UTC but the documents are somewhat advanced and I'm not too sure how to change this field.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芸娘子的小脾气 2024-10-30 15:08:29

在 my.ini 文件的 [mysqld] 部分下,添加以下行:

default-time-zone = '+00:00'

重新启动服务器。
您还可以在运行时从命令行设置它

mysql> SET GLOBAL time_zone = '+00:00';

来自 MySql 的文档

In your my.ini file, under the [mysqld] section, add the following line:

default-time-zone = '+00:00'

Restart the server.
You could also set it at runtime from the command line with

mysql> SET GLOBAL time_zone = '+00:00';

The documentation from MySql

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文