# concat

Concatenate two input strings using the seperator

## Signature

> CONCAT(col1, col2, seperator)

## Usage Examples

```sql
SELECT concat('Apache', 'Pinot', ' ') AS value
FROM ignoreMe
```

| value        |
| ------------ |
| Apache Pinot |

```sql
SELECT concat('real-time', 'analytics', '__') AS value
FROM ignoreMe
```

| value                  |
| ---------------------- |
| real-time\_\_analytics |
