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