Numeric functions (Exponent and Root)
Returns a number (x) raised to the specified power (y).
Syntax¶POW(x, y) POWER (x, y)
Copy
Usage notes¶Always returns a floating point number, even if the input expressions are of integer types.
Examples¶SELECT x, y, pow(x, y) FROM tab; -----+-----+-------------+ X | Y | POW(X, Y) | -----+-----+-------------+ 0.1 | 2 | 0.01 | 2 | 3 | 8 | 2 | 0.5 | 1.414213562 | 2 | -1 | 0.5 | -----+-----+-------------+
Copy
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4