我想将mysql中的日期格式化为这种格式
1981 年 11 月 17 日星期二
但我只实现了这种格式
select ename, date_format(hiredate, '%W, %D %M, %Y') as hiredate from employee;
如何获得“十一月十七日”作为我的输出?
我想将mysql中的日期格式化为这种格式
1981 年 11 月 17 日星期二
但我只实现了这种格式
select ename, date_format(hiredate, '%W, %D %M, %Y') as hiredate from employee;
如何获得“十一月十七日”作为我的输出?