NAN()

All functions > MATH > NAN()

Returns the floating-point representation of NaN (Not a Number).

Signatures

NaN

Returns: NaN

NAN() → DOUBLE
sql
ParameterTypeRequiredDescription

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

Last update at: 2026/05/26 17:22:09