MySQL datetime:插入带有时区偏移的日期

发布于 2024-12-07 18:33:49 字数 241 浏览 0 评论 0 原文

我尝试将时间戳插入“日期”:

INSERT INTO dates VALUES (4, "2011-10-04 12:58:36 -0600")

4 只是一个 ID。在表中插入为:

2011-10-04 12:58:36 or 0000-00-00 00:00:00

所以我的问题是,时间差 -0600 丢失了。我也可以插入它吗?

I tried to insert a timestamp into 'dates' with:

INSERT INTO dates VALUES (4, "2011-10-04 12:58:36 -0600")

4 is just an ID. In the table it is inserted as:

2011-10-04 12:58:36 or 0000-00-00 00:00:00

So my problem is, that the time difference -0600 is lost. How can I insert it, too?

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

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

发布评论

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

评论(1

夜清冷一曲。 2024-12-14 18:33:49

您可以使用 SUBSTR() 将其截断并使用 CONVERT_TZ() 对其进行转换。

像这样

INSERT INTO table_name  CONVERT_TZ(SUBSTR('2011-10-04 12:58:36 -0600',1,19),'+00:00',SUBSTR('2011-10-04 12:58:36 -0600',20));

You could use SUBSTR() to chop it off and CONVERT_TZ() to convert it.

Something like this

INSERT INTO table_name  CONVERT_TZ(SUBSTR('2011-10-04 12:58:36 -0600',1,19),'+00:00',SUBSTR('2011-10-04 12:58:36 -0600',20));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文