NAN()
All functions > MATH > NAN()
Returns the floating-point representation of NaN (Not a Number).
Signatures
NaN
Returns: NaN
NAN() → DOUBLE sql
| Parameter | Type | Required | Description |
|---|
Signature notes:
- Represents an undefined or unrepresentable value
- NaN is not equal to any value, including itself
- Any arithmetic with NaN results in NaN
Examples
FeatureQL
SELECT
f1 := IS_NAN(NAN()) -- NaN value
;Result
| f1 BOOLEAN |
|---|
| true |
On this page