Skip to content

Returns the value of x to the power of y.

func.pow( <x, y> )
func.pow(-2, 2)
┌────────────────────┐
│ func.pow((- 2), 2) │
├────────────────────┤
4
└────────────────────┘
POW( <x, y> )
SELECT POW(-2, 2), POWER(-2, 2);
┌─────────────────────────────────┐
│ pow((- 2), 2) │ power((- 2), 2) │
├───────────────┼─────────────────┤
44
└─────────────────────────────────┘