POW
Learn how to use the POW math function in PlaidCloud Lakehouse. Returns a number raised to the power of another number - see syntax, examples, and output.
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 │
└────────┘