在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;
需要帮助解决上述问题。
jmp7cifd1#
问题是 %b :%b缩写月份名称(一月到十二月)你需要 %M :%m月全称(1月至12月)资料来源:https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_str-迄今为止
%b
%M
1条答案
按热度按时间jmp7cifd1#
问题是
%b
:%b缩写月份名称(一月到十二月)
你需要
%M
:%m月全称(1月至12月)
资料来源:https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_str-迄今为止