EMPTY()

All functions > CORE > EMPTY()

Returns an EMPTY filling for empty parameters in functions.

Signatures

Returns: A special EMPTY constant value

EMPTY()EMPTY
sql
ParameterTypeRequiredDescription

Notes

  • Represents an empty or absent value
  • Used internally for optional parameters
  • Different from NULL - represents intentional absence
  • Part of the FeatureQL type system
  • Used in function signatures to indicate optional positions

See also

Examples

FeatureQL
SELECT
    f1 := TYPEOF(EMPTY()) -- EMPTY() is its own FeatureQL type
;
Result
f1 VARCHAR
EMPTY

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