2023-05-11 23:02:27 +08:00
|
|
|
[[esql-length]]
|
|
|
|
=== `LENGTH`
|
|
|
|
Returns the character length of a string.
|
|
|
|
|
|
|
|
[source,esql]
|
|
|
|
----
|
|
|
|
FROM employees
|
2023-06-19 19:06:44 +08:00
|
|
|
| KEEP first_name, last_name, height
|
2023-05-11 23:02:27 +08:00
|
|
|
| EVAL fn_length = LENGTH(first_name)
|
|
|
|
----
|