选择 Now() 作为 CurrentDateTime mysql 时区

发布于 2024-12-17 08:29:08 字数 210 浏览 2 评论 0原文

我如何使用 GMT 的 SELECT Now() As CurrentDateTime ,因为它会将书显示为 GMT-5。

基本上,当时间为:2011-11-19 09:46:37(GMT)时,它显示为:`2011-11-19 04:46:37

我如何将其设置为 GMT。

谢谢。

How can I use the SELECT Now() As CurrentDateTime for GMT, as it displays the tome as GMT-5.

Basically, when the time is: 2011-11-19 09:46:37 in GMT, it displays it as: `2011-11-19 04:46:37

How can I set this for GMT.

Thanks.

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

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

发布评论

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

评论(1

天荒地未老 2024-12-24 08:29:08

一种方法是设置会话的时区:

SET time_zone = '+00:00';

MySQL“时区支持”文档

还有 CONVERT_TZ,解释如下: MySQL 默认时间格式 UTC 还是 GMT?< /a>

One way is by setting the time zone for your session:

SET time_zone = '+00:00';

MySQL "time zone support" documentation.

There's also CONVERT_TZ, which is explained here: MySQL default time format UTC or GMT?

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