更改 MySQL 插入请求中的时区?
我正在运行我的网站共享托管,并且他们的时区已关闭,无法更改默认时区。
我可以在 MySQL 查询中设置时区吗? 例如 INSERT INTO mytable name=johnage=20 time=NOW() WHERE id=11 and TIME ZONE = 'New York/NY'
I am running my site shared hosting and their timezone is off, theres no way to change default timezone.
Can i set timezone inside MySQL query?
e.g. INSERT INTO mytable name=john age=20 time=NOW() WHERE id=11 and TIME ZONE = 'New York/NY'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在连接后放置此内容。
这将为连接上的所有查询设置时区。您还可以使用已知时区,即“美国/纽约”,但如果未知,则必须将其手动添加到时区表中。请参阅这篇博文了解具体操作方法。
You can put this after making the connection.
This will set the time zone for all the queries on the connection. You can also use known time zones, ie, "America/New York", but if it's unknown, you have to add this manually to a time zones table. Refer to this blog post to see how.