length.asciidoc 189 B

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