Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
[discrete]
[[esql-length]]
=== `LENGTH`
Returns the character length of a string.
[source,esql]
----
FROM employees
| KEEP first_name, last_name, height
| EVAL fn_length = LENGTH(first_name)