查询的日期是本月,但实际使用的数据是上月的数据,怎么把日期自动减1,显示实际的上月日期呢? 比如查出来的日期是2023-08-07,实际使用的数据是上月的,怎么自动减1,显示实际的日期为2023-08呢? SELECT ${switch(维度, "月","date(last_update_date)")} '时间', entirety_ppk FROM `pspc_ppk_report` where last_update_date between '${datedelta(today(),-365)}' and '${today()}' and ce_parameter ='THICK_DIFF_FAE_REDGE5' and attachment_resource = 'TMJIV002' and ppk_interval_type = '1' group by ${switch(维度, "月","date(last_update_date)")} |