UNARY_PLUS()

All functions > MATH > UNARY_PLUS()

Explicit unary plus on an expression (no-op on the value).

Signatures

Returns: Same type as the operand

UNARY_PLUS(expr: T) → T
sql
ParameterTypeRequiredDescription
exprTYesOperand

With:

  • T : Any numeric type

Notes

  • Written in FeatureQL as a leading + before an expression (for example +ROW_NUMBER).
  • NULL in, NULL out.

Examples

FeatureQL
SELECT
    f1 := UNARY_PLUS(3), -- Function call form
    f2 := +3 -- Operator form on integer literal
;
Result
f1 BIGINTf2 BIGINT
33

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