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