POW

Returns a number raised to the power of another number.

Analyze Syntax

func.pow(<x>, <y>)

Analyze Examples

func.pow(2, 10)

┌────────┐
 1024.0  
└────────┘

SQL Syntax

POW(<x>, <y>)

SQL Examples

SELECT POW(2, 10);

┌────────┐
 1024.0  
└────────┘