description |
---|
This section contains reference documentation for the concat function. |
Concatenate two input strings using the seperator
CONCAT(col1, col2, seperator)
SELECT concat('Apache', 'Pinot', ' ') AS value
FROM ignoreMe
value |
---|
Apache Pinot |
SELECT concat('real-time', 'analytics', '__') AS value
FROM ignoreMe
value |
---|
real-time__analytics |