# CONCAT

## Content

This function joins the text fetched from multiple strings.

## Syntax

`CONCAT(textvalue1, textvalue2,...)`

## Arguments

This function has the following arguments:

| <span style="color: rgb(34, 34, 34); font-family: 'Gotham SSm A', 'Gotham SSm B', 'Open Sans', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 600; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Argument</span> | <span style="color: rgb(34, 34, 34); font-family: 'Gotham SSm A', 'Gotham SSm B', 'Open Sans', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 600; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;">Description</span> |
| -------- | ----------- |
| *textvalue1* | Refers to a text string, or array of strings, to be joined. |
| *textvalue2* | [Optional] Refers to the additional text strings to be joined. |

## Remarks

There can be a maximum of 253 text items in arguments (including *textvalue1* ).

In the result, this function never includes the delimiter (spaces, ampersands etc.) between each text value and never eliminates the empty arguments.

## Data Types

Accepts string data. Returns string data.

## Examples

`CONCAT(Riot, ", ", Pauler)` gives the result Riot Pauler.