elasticsearch/docs/reference/esql/functions/concat.asciidoc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
196 B
Plaintext
Raw Normal View History

2023-05-11 23:02:27 +08:00
[[esql-concat]]
=== `CONCAT`
Concatenates two or more strings.
[source,esql]
----
FROM employees
| PROJECT first_name, last_name, height
| EVAL fullname = CONCAT(first_name, " ", last_name)
----