elasticsearch/docs/reference/esql/functions/pow.asciidoc

11 lines
196 B
Plaintext
Raw Normal View History

2023-05-11 23:02:27 +08:00
[[esql-pow]]
=== `POW`
Returns the the value of a base (first argument) raised to a power (second
argument).
[source,esql]
----
ROW base = 2.0, exponent = 2.0
| EVAL s = POW(base, exponent)
----