## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> CONCAT[CONCAT]:::quoted CONCAT -->| | CONCAT_OP[CONCAT_OP]:::quoted CONCAT_OP --> End((END)) ``` ## Purpose The `CONCAT` SQL function concatenates the left and right values together as a text. The values must all be either a BLOB or a type that can be cast to a string. ## concat_func ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> CONCAT_FUNC[CONCAT_FUNC]:::quoted CONCAT_FUNC -->| | CONCAT[CONCAT]:::quoted CONCAT --> End((END)) ``` ## Purpose Concatenate a list of values together as a text or BLOB. The values must all be either a BLOB or a type that can be cast to a string.