ли в clickhouse аналог string_agg(string ,',') как в postgre или listagg(string, ', ') oracle?
типа сджойнить массив в строку?
1. Create array of prot_id values: groupArray(prot_id). 2. If prot_id is not of String type, transform array to Array(String): arrayMap(x -> toString(x), groupArray(prot_id)) 3. Join array to single string: arrayStringConcat(arrayMap(x -> toString(x), groupArray(prot_id)), ',')
Обсуждают сегодня