## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR Start((START)) --> IS_BOOLEAN[IS_BOOLEAN]:::quoted IS_BOOLEAN --> End((END)) ``` The `IS_BOOLEAN` SQL function determines whether a value is a valid boolean. When true, the value can be converted by to_boolean. Parameters: - Input: value to convert. Returns: true when the value can be converted to a boolean, false otherwise.