mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-29 09:54:06 -04:00
10 lines
193 B
Text
10 lines
193 B
Text
[[esql-concat]]
|
|
=== `CONCAT`
|
|
Concatenates two or more strings.
|
|
|
|
[source,esql]
|
|
----
|
|
FROM employees
|
|
| KEEP first_name, last_name, height
|
|
| EVAL fullname = CONCAT(first_name, " ", last_name)
|
|
----
|