pow.asciidoc 196 B

12345678910
  1. [[esql-pow]]
  2. === `POW`
  3. Returns the the value of a base (first argument) raised to a power (second
  4. argument).
  5. [source,esql]
  6. ----
  7. ROW base = 2.0, exponent = 2.0
  8. | EVAL s = POW(base, exponent)
  9. ----