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
    -- Function call form
    f1 := UNARY_PLUS(3),
    -- Operator form on integer literal
    f2 := +3
;
Result
f1 BIGINTf2 BIGINT
33

Last update at: 2026/06/20 10:08:10