## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> ADD_MONTHS[ADD_MONTHS]:::quoted ADD_MONTHS[ADD_MONTHS] --> End((END)) ``` ## Purpose The `ADD_MONTHS` SQL function adds an amount of months to a datetime. Parameters: - Date: datetime to add the months to. - Months: the amount of months to add. Returns: A new datetime with the amount of months added.