MySQL UTC 日期格式

发布于 2024-08-26 02:58:12 字数 171 浏览 2 评论 0原文

我正在从 Twitter 的 API 中提取数据,返回日期为 UTC,格式如下:

2009 年 1 月 24 日星期六 22:14:29 +0000

MySQL 可以专门处理这种格式还是我需要转换它?我正在使用 Python 提取数据。

I am pulling data from Twitter's API and the return date is UTC in the following form:

Sat Jan 24 22:14:29 +0000 2009

Can MySQL handle this format specifically or do I need to transform it? I am pulling the data using Python.

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

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

发布评论

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

评论(1

死开点丶别碍眼 2024-09-02 02:58:12

是的,如果您不愿意用 Python 进行转换,MySQL 可以使用 STR_TO_DATE() 函数,如下例所示:

INSERT INTO
    your_table
VALUES ( 
    STR_TO_DATE('Sat Jan 24 22:14:29 +0000 2009', '%a %b %d %H:%i:%s +0000 %Y')
);

您可能还想检查可能的格式说明符的完整列表: MySQL:DATE_FORMAT

Yes, if you are not willing to transform it in Python, MySQL can handle this with the STR_TO_DATE() function, as in the following example:

INSERT INTO
    your_table
VALUES ( 
    STR_TO_DATE('Sat Jan 24 22:14:29 +0000 2009', '%a %b %d %H:%i:%s +0000 %Y')
);

You may also want to check the full list of possible format specifiers: MySQL: DATE_FORMAT.

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