TO_BOOLEAN
Converts a value to BOOLEAN data type.
Analyze Syntax
func.to_boolean( <expr> )
Analyze Examples
func.to_boolean('true')
┌──────────────────────────┐
│ func.to_boolean('true') │
├──────────────────────────┤
│ true │
└──────────────────────────┘
SQL Syntax
TO_BOOLEAN( <expr> )
SQL Examples
SELECT TO_BOOLEAN('true');
┌────────────────────┐
│ to_boolean('true') │
├────────────────────┤
│ true │
└────────────────────┘
Last modified April 24, 2024 at 10:11 PM EST: updating conversion functions (833d7a5)