isFinite
This section contains reference documentation for the isFinite function.
Last updated
Was this helpful?
This section contains reference documentation for the isFinite function.
Returns 1 if the value is finite (not infinite and not NaN), 0 otherwise.
isFinite(col)
col
DOUBLE
Value to check
Returns: INT (1 or 0)
SELECT isFinite(100.5) AS value
FROM myTable1
SELECT isFinite(1.0 / 0.0) AS value
FROM myTable0
See also isInfinite, isNaN, and ifNotFinite.
Last updated
Was this helpful?
Was this helpful?

