SQUARE
Description
Returns the square of the specified float value. (SQUARE in Transact-SQL).
Sample Source Pattern
Syntax
SQUARE ( float_expression ) SQUARE(expr)Examples
Code:
SELECT SQUARE (5) AS SQUARE;Result:
SQUARE|
------+
25.0|Code:
SELECT SQUARE (5) AS SQUARE;Result:
SQUARE|
------+
25|Last updated