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.
SQL> select months_between(to_date('01.03.05','dd.mm.rr')
2 ,to_date('01.02.05','dd.mm.rr')) month,
3 to_date('01.03.05','dd.mm.rr')
4 -to_date('01.02.05','dd.mm.rr') days
5 from dual;
MONTH DAYS
---------- ----------
1 28