## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> UPPER[UPPER]:::quoted UPPER --> End((END)) ``` ## Purpose The `UPPER` SQL function converts provided text to uppercase. Parameters: - Input: the text that will be converted to uppercase. Returns: A text converted to uppercase.