Categories: Boolean
ISTRUE
Returns TRUE if the input expression evaluates to TRUE.
Syntax
ISTRUE(expression int64) → boolean
- expression: Input expression.
Examples
ISTRUE exampleSELECT ISTRUE(1)
-- True
ISTRUE(expression boolean) → boolean
- expression: Input expression.
Examples
ISTRUE exampleSELECT ISTRUE(FALSE)
-- False
ISTRUE(expression int32) → boolean
- expression: Input expression.
Examples
ISTRUE exampleSELECT ISTRUE(0)
-- False
Was this page helpful?
Glad to hear it! Thank you for your feedback.
Sorry to hear that. Thank you for your feedback.