I have slide_results
table which has tags
array column:
tags character varying[] DEFAULT '{}'::character varying[]
I'm searching slide_results
by tags in the following way:
select * from slide_results where array_to_string(tags, ',') ilike '%pro%';
Is there simpler way of doing that?