Skip to content

Returns a number raised to the power of another number.

func.pow(<x>, <y>)
func.pow(2, 10)
┌────────┐
1024.0
└────────┘
POW(<x>, <y>)
SELECT POW(2, 10);
┌────────┐
1024.0
└────────┘