mySQL 将 varchar 转换为日期

2021-11-20 00:00:00 mysql

我需要将 1/9/2011 的 varchar 值转换为 mySQL 中的日期,而我只需要月份和年份.这样我就可以使用 PERIOD_DIFF 函数(所以我需要将上述内容转换为 201101).

I need to convert a varchar value of 1/9/2011 to a date in mySQL and I want only the month and year. So that I can then use the PERIOD_DIFF function (so I would need the above to be converted to 201101).

我尝试了各种使用 STR_TO_DATE 函数的方法:

I've tried various ways using the STR_TO_DATE function:

SELECT STR_TO_DATE(CYOApp_oilChangedDate, '%m/%Y') FROM CYO_AppInfo

但我得到了奇怪的结果...(例如:2009-01-00)

But I get weird results... (for example: 2009-01-00)

我做错了什么?

推荐答案

select date_format(str_to_date('31/12/2010', '%d/%m/%Y'), '%Y%m'); 

select date_format(str_to_date('12/31/2011', '%m/%d/%Y'), '%Y%m'); 

很难从你的例子中看出

相关文章