length.asciidoc 197 B

1234567891011
  1. [discrete]
  2. [[esql-length]]
  3. === `LENGTH`
  4. Returns the character length of a string.
  5. [source,esql]
  6. ----
  7. FROM employees
  8. | KEEP first_name, last_name, height
  9. | EVAL fn_length = LENGTH(first_name)
  10. ----