想要得到月份数,需要使用months_between函数。
months_between(to_date('201707','yyyyMM'),to_date('201706','yyyyMM')) 得到1个月份
to_date('201707','yyyyMM')-to_date('201706','yyyyMM') 得到30天
2022-10-03 07:19:36
想要得到月份数,需要使用months_between函数。
months_between(to_date('201707','yyyyMM'),to_date('201706','yyyyMM')) 得到1个月份
to_date('201707','yyyyMM')-to_date('201706','yyyyMM') 得到30天