POW
Returns the value of x
to the power of y
.
Analyze Syntax
func.pow( <x, y> )
Analyze Examples
func.pow(-2, 2)
┌────────────────────┐
│ func.pow((- 2), 2) │
├────────────────────┤
│ 4 │
└────────────────────┘
SQL Syntax
POW( <x, y> )
Aliases
SQL Examples
SELECT POW(-2, 2), POWER(-2, 2);
┌─────────────────────────────────┐
│ pow((- 2), 2) │ power((- 2), 2) │
├───────────────┼─────────────────┤
│ 4 │ 4 │
└─────────────────────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)