POWER (Lakehouse v2)
Returns a number raised to the power of another number. Alias for POW.
Analyze Syntax
Section titled “Analyze Syntax”func.power(<x>, <y>)Analyze Examples
Section titled “Analyze Examples”func.power(2, 10)
┌────────┐│ 1024.0 │└────────┘SQL Syntax
Section titled “SQL Syntax”POWER(<x>, <y>)SQL Examples
Section titled “SQL Examples”SELECT POWER(2, 10);
┌────────┐│ 1024.0 │└────────┘