I have a clickhouse table with one of it columns being Array(T).
When I run
SELECT array_field FROM my_table
I get the following:
1 | {a, b, c}
--------------
2 | {a, b}
--------------
3 | {d, e}
I need to find a way to get a list of unique values in all of that lists, just like that:
{a, b, c, d, e}
How can I do that?