可以在数据集中将该字段用case when 处理
例:年月字段及格式:yearmonth = 'yyyy-MM'
(case when concat(substr(yearmonth,6,2),'月')='01月' then '1月' --substr(yearmonth,6,2) 取出年月字段中的月'MM';concat(substr(yearmonth,6,2),'月') 为'MM' 加上月。如;’2021-09‘ ==》’09月‘
when concat(substr(yearmonth,6,2),'月')='02月' then '2月'
when concat(substr(yearmonth,6,2),'月')='03月' then '3月'
when concat(substr(yearmonth,6,2),'月')='04月' then '4月'
when concat(substr(yearmonth,6,2),'月')='05月' then '5月'
when concat(substr(yearmonth,6,2),'月')='06月' then '6月'
when concat(substr(yearmonth,6,2),'月')='07月' then '7月'
when concat(substr(yearmonth,6,2),'月')='08月' then '8月'
when concat(substr(yearmonth,6,2),'月')='09月' then '9月'
else concat(substr(yearmonth,6,2),'月') end) as months |