更改 MySQL 插入请求中的时区?

发布于 2024-11-30 12:09:20 字数 176 浏览 0 评论 0原文

我正在运行我的网站共享托管,并且他们的时区已关闭,无法更改默认时区。

我可以在 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 技术交流群。

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

发布评论

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

评论(1

苯莒 2024-12-07 12:09:20

您可以在连接后放置此内容。

SET time_zone = "-5:00"

这将为连接上的所有查询设置时区。您还可以使用已知时区,即“美国/纽约”,但如果未知,则必须将其手动添加到时区表中。请参阅这篇博文了解具体操作方法。

You can put this after making the connection.

SET time_zone = "-5:00"

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.

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