11 lines
196 B
Plaintext
11 lines
196 B
Plaintext
|
[[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)
|
||
|
----
|