POWER

Description

Returns the value of the specified expression for a specific power. (POWER in Transact-SQL).

Sample Source Pattern

Syntax

POWER( base, exp )

Arguments

base: Base of number, it must be a float expression. exp: Power to which raise the base.

Return Type

The return type depends on the input expression:

Examples

SELECT POWER(2, 3)

Last updated