since i cant use conditions with ARRAY JOIN, i have to JOIN two tables and i can't find how to convert a simple array to a column.
WITH
['filter', 'words'] as filter_words
...
i tried this but id didn't work
WITH
filter_words as (
select arrayJoin(['%filter%', '%words%']) as filter_word
)
You can use this to convert a simple array to a column: