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> create or replace procedure NextDay (date_in in date) is
2 begin
3 dbms_output.put_line('Tomorrow will be: '||to_char(date_in+1,'dd-mon-yyyy')||'.');
4 end;
5 /
Procedure created.
SQL> accept x prompt "Enter some date (e.g. 'DD-MON-YYYY'): "
Enter some date (e.g. 'DD-MON-YYYY'): 12-MAR-1901
SQL> exec NextDay(to_date('&x','DD-MON-YYYY'))
Tomorrow will be: 13-mar-1901.