NEXT_DAY(SYSDATE,'Monday'): Finding the first Monday after the current date and time
SQL>
SQL>
SQL> -- Finding the first Monday after the current date and time.
SQL> SELECT TO_CHAR(NEXT_DAY(SYSDATE,'Monday'),'MM/DD/YYYY HH:MM:SS AM') "Next_Day" from DUAL;