SQUARE: Returns the square of the given number : SQUARE « Math Functions « SQL Server / T-SQL






SQUARE: Returns the square of the given number


2> -- SQUARE: Returns the square of the given number.
3>
4> SELECT SQUARE(20)
5> GO

------------------------
                     400

(1 rows affected)

           
       








Related examples in the same category