Skip to content

INTERVAL

SELECT INTERVAL 7 DAY + '2021-04-01';
'2021-04-08'

The SQL statement above adds seven days to the date ‘2021-04-01’. The INTERVAL keyword is used to specify the period which is to be added, in this case, 7 DAYS.