有什么简单的sql可以实现获取上月的日期吗,比如我通过to_char(sysdate,'yyyy-MM')获取到的是2021-04,怎么把它变成2021-03呢
select to_char(add_months(trunc(sysdate),-1),'yyyymm') from dual;