concatenate 是拼接函数,这语句是等于把year(today() - 31),if(month(today() - 31) <= 9, "-0", "-"),(month(today() - 31)) 三个拼接成在一起。 结果应该是2019-05
year(today() - 31) 这个是获取上个月今天的年份
if(month(today() - 31) <= 9, "-0", "-") IF 判断语句,上个月今天的月份是否小于等于9,小于就-0,大于9就-
(month(today() - 31) 上个月今天的月份