Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
...WHERE data_month = to_char(trunc(sysdate,'mm')-1,'mm')
select to_char(trunc(sysdate,'mm')-1,'mm') from dual;
TO
--
12
1 row selected.
WHERE data_month = to_char(add_months(sysdate,-1),'MM')...