You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The use case is to follow the ClickHouse docs script to generate the markdown based on settings source code.
SELECT prefix || (SELECT groupConcat(*) FROM main_content)
INTO OUTFILE 'docs/en/operations/settings/settings.md' TRUNCATE FORMAT LineAsString
There is only 1 column in CTE main_content, so it uses groupConcat(*)
I can use group_array(col) to create an array but there is no function to turn this array of string to a single string. concat function takes multiple string params, but not an array.
The text was updated successfully, but these errors were encountered:
Reference https://clickhouse.com/docs/en/sql-reference/aggregate-functions/reference/groupconcat
The use case is to follow the ClickHouse docs script to generate the markdown based on settings source code.
There is only 1 column in CTE main_content, so it uses
groupConcat(*)
I can use group_array(col) to create an array but there is no function to turn this array of string to a single string. concat function takes multiple string params, but not an array.
The text was updated successfully, but these errors were encountered: