ALL_CONCAT

Syntax

ALL_CONCAT( expression [ , separator ] )
ALL_CONCAT( expression [ , separator ]
            [ FIXED ... | INCLUDE ... | EXCLUDE ... ]
            [ BEFORE FILTER BY ... ]
          )

More info:

Description

Returns a string that contains all grouped values of expression delimited by separator (if separator is not specified, a comma is used).

Argument types:

  • expressionArray of fractional numbers | Array of integers | Array of strings | Boolean | Date | Datetime | Fractional number | Geopoint | Geopolygon | Integer | String | UUID
  • separatorString

Return type: String

Note

Only constant values are accepted for the arguments (separator).

Examples

ALL_CONCAT([Profit])
ALL_CONCAT([Profit], '; ')

Data source support

ClickHouse 19.13, PostgreSQL 9.3.

Previous
Next