我需要将字段转换为日期。
目前,该字段是月份(1,2,3…(的整数,我想将其转换为";一月、二月、三月">
如何编写SQL(Presto(,使其从bigint转换为date?
这行得通吗?
select date_format(str_to_date('2000-' || 1 || '-01'), '%Y-%m-%d'), '%M')
Presto没有小提琴,所以我还没有测试过,但看看这是否能达到的效果
select date_format(date_add(month, your_integer_month, '2020-12-31'),'%M')