选择 Now() 作为 CurrentDateTime mysql 时区
我如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是设置会话的时区:
MySQL“时区支持”文档。
还有 CONVERT_TZ,解释如下: MySQL 默认时间格式 UTC 还是 GMT?< /a>
One way is by setting the time zone for your session:
MySQL "time zone support" documentation.
There's also CONVERT_TZ, which is explained here: MySQL default time format UTC or GMT?