POWER: returns the value of the first parameter raised to the power of the second parameter : Power « Math Functions « SQL Server / T-SQL






POWER: returns the value of the first parameter raised to the power of the second parameter


2> -- POWER: returns the value of the first parameter raised to the power of the second parameter.
3>
4> SELECT POWER(3,2)
5> GO

-----------
          9

(1 rows affected)

           
       








Related examples in the same category

1.Use select to do the calculation