MySQL UTC 日期格式
我正在从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,如果您不愿意用 Python 进行转换,MySQL 可以使用
STR_TO_DATE()
函数,如下例所示:您可能还想检查可能的格式说明符的完整列表: 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:You may also want to check the full list of possible format specifiers: MySQL: DATE_FORMAT.