This section contains reference documentation for the isInfinite function.
Returns 1 if the value is infinite (positive or negative infinity), 0 otherwise.
1
0
isInfinite(col)
col
DOUBLE
Value to check
Returns: INT (1 or 0)
SELECT isInfinite(1.0 / 0.0) AS value FROM myTable
SELECT isInfinite(100.5) AS value FROM myTable
Last updated 3 months ago
Was this helpful?