如何将 MySQL 数据库更改为 UTC?
我使用的是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 my.ini 文件的 [mysqld] 部分下,添加以下行:
重新启动服务器。
您还可以在运行时从命令行设置它
来自 MySql 的文档
In your my.ini file, under the [mysqld] section, add the following line:
Restart the server.
You could also set it at runtime from the command line with
The documentation from MySql