## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> REPEAT[REPEAT]:::quoted REPEAT --> End((END)) ``` ## Purpose The `REPEAT` SQL function gets a concatenation of the text by a number of times. Parameters: - Text: text to repeat. - Times: number of time to repeat the text. Returns: the text repeated a number of times.