Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the value of expr
. This function is a synonym for positive
function.
+ expr
expr
: An expression that evaluates to a numeric or INTERVAL.
The result type matches the argument.
This function is a no-op.
> SELECT +(1);
1
> SELECT +(-1);
-1
> SELECT +INTERVAL '5' MONTH;
0-5