Skip to content

Returns a number raised to the power of another number. Alias for POW.

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