Add days Oracle SQL

If you want to add N days to your days. You can use the plus operator as follows –

SELECT ( SYSDATE + N ) FROM DUAL;

Leave a Comment