## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> REVERSE[REVERSE]:::quoted REVERSE --> End((END)) ``` ## Purpose The `REVERSE` SQL function flips the input around. Parameters: - Input: text to flip around. Returns: the text with it's characters in reversed order.