INFINITY
All functions > MATH > INFINITY
Returns the floating-point representation of positive infinity.
Signatures
Returns: Positive infinity
INFINITY() → DOUBLE sql
| Parameter | Type | Required | Description |
|---|
Notes
- Represents positive infinity in floating-point arithmetic
- Used in mathematical calculations involving limits
- Greater than any finite number
- Infinity + any finite number = Infinity
- Infinity / finite number = Infinity
Examples
FeatureQL
SELECT
f1 := IS_INFINITE(INFINITY()) -- Positive infinity is infinite
;Result
| f1 BOOLEAN |
|---|
| True |
On this page