mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-25 15:47:23 -04:00
* Functions starting with A * Functions starting with 'C' * More 'C' functions * Fix tests * Fix missing snippet * DATE_* functions * Apply suggestions from code review Co-authored-by: Bogdan Pintea <pintea@mailbox.org> --------- Co-authored-by: Bogdan Pintea <pintea@mailbox.org>
30 lines
438 B
Text
30 lines
438 B
Text
[discrete]
|
|
[[esql-concat]]
|
|
=== `CONCAT`
|
|
|
|
*Syntax*
|
|
|
|
[source,esql]
|
|
----
|
|
CONCAT(string1, string2[, ..., stringN])
|
|
----
|
|
|
|
*Parameters*
|
|
|
|
`stringX`::
|
|
Strings to concatenate.
|
|
|
|
*Description*
|
|
|
|
Concatenates two or more strings.
|
|
|
|
*Example*
|
|
|
|
[source.merge.styled,esql]
|
|
----
|
|
include::{esql-specs}/eval.csv-spec[tag=docsConcat]
|
|
----
|
|
[%header.monospaced.styled,format=dsv,separator=|]
|
|
|===
|
|
include::{esql-specs}/eval.csv-spec[tag=docsConcat-result]
|
|
|===
|