description |
---|
Returns TRUE if the input expression evaluates to TRUE. |
- expression: Input expression.
Examples
{% code title="ISTRUE example" %}
SELECT ISTRUE(1)
-- True
{% endcode %}
- expression: Input expression.
Examples
{% code title="ISTRUE example" %}
SELECT ISTRUE(FALSE)
-- False
{% endcode %}
- expression: Input expression.
Examples
{% code title="ISTRUE example" %}
SELECT ISTRUE(0)
-- False
{% endcode %}
\