## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> DATEADD[DATEADD]:::quoted DATEADD --> End((END)) ``` ## Purpose The `DATEADD` SQL function adds an amount of time to a date. Parameters: - Interval: the date interval to be added. - Number: the number of intervals to add. - Date: the date to wich the interval should be added. Returns: the original date with the number of intervals added.