to-date查询(mysql)

b5buobof  于 2021-06-18  发布在  Mysql
关注(0)|答案(1)|浏览(324)

在mysql中,我得到了上面的错误。错误是:函数str to date的datetime值“31/july/2018”不正确

Update mytable
set Date1 = STR_TO_DATE('31/July/2018', '%d/%b/%Y')
where 'Date' IS NOT NULL;

需要帮助解决上述问题。

jmp7cifd

jmp7cifd1#

问题是 %b :
%b缩写月份名称(一月到十二月)
你需要 %M :
%m月全称(1月至12月)
资料来源:https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_str-迄今为止

相关问题