Mega Code Archive

 
Categories / MSSQL / Math Functions
 

POWER

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)