## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> POWER[POWER]:::quoted POWER --> End((END)) ``` ## Purpose The `POWER` SQL function gets a value of a number raised to another. Parameters: - Value: a number. - exponent: a number. Returns: the value of a number raised to another.