- Categories:
TO_ BOOLEAN¶
Converts the input text or numeric expression to a BOOLEAN value.
- See also:
Syntax¶
Arguments¶
string_or_numeric_exprA string expression or numeric expression that can be evaluated to a BOOLEAN value.
Returns¶
Returns a BOOLEAN value or NULL.
- Returns TRUE if
string_or_numeric_exprevaluates to TRUE. - Returns FALSE if
string_or_numeric_exprevaluates to FALSE. - If the input is NULL, returns NULL without reporting an error.
Usage notes¶
-
For a string expression:
'true','t','yes','y','on','1'return TRUE.'false','f','no','n','off','0'return FALSE.- All other strings return an error.
The evaluations of the strings are case-insensitive.
-
For a numeric expression:
0returns FALSE.- All non-zero numeric values return TRUE.
- When converting from the FLOAT data type, non-numeric values, such as
NaN(not a number) andINF(infinity), return an error.
Examples¶
The following examples use the TO_BOOLEAN function.
Create a table and insert data:
Convert a text string to a BOOLEAN value:
Convert a number to a BOOLEAN value: