- Categories:
Numeric functions (Exponent and Root)
SQUARE¶
Returns the square of a numeric expression (i.e. a numeric expression multiplied by itself).
Syntax¶
Returns¶
If the input expression is of type DECFLOAT, the returned type is DECFLOAT. Otherwise, the returned type is FLOAT.
Usage notes¶
- More efficient than the expression x*x, so square(x) is preferred when a floating-point result is acceptable.