SELECT POWER(10,2) Result : Power « Math Functions « SQL Server / T-SQL Tutorial






33>
34> SELECT POWER(10,2) Result
35> GO
Result
-----------
        100

(1 rows affected)








11.15.Power
11.15.1.POWER returns a number (input_x) raised to the power of a number (input_y).
11.15.2.SELECT POWER(10,2) Result