power

Raises numeric value to specified power

Syntax

power(arith_expr1, arith_expr2)

Arguments

arith_expr1 Arithmetic expression whose result value is to be raised to specified power.
arith_expr2 Arithmetic expression whose result value is the power.

Description

This function returns the result of: arith_expr1arith_expr2

Example

select power(3.0,4.0);
power(3.0,4.0)
81.00