## Syntax
```mermaid
%%{init: {
'theme': 'base',
'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' },
'themeVariables': {
'fontSize': '11px',
'fontFamily': 'Arial'
}
}}%%
flowchart LR
Start((START)) --> CSVDECODE[CSVDECODE]:::quoted
CSVDECODE --> End((END))
```
## Purpose
The `CSVDECODE` SQL function returns the CSV decoded input.
Parameters:
- Input: the input which will be decoded into CSV.
Returns: An object which is the CSV decoded input.