I'm using Postgres 9.5 and I have a column col with arrays like this
["ABC","4"]
["4","5","6"]
["ABC"]
How do I search for all arrays that contain 'ABC'?
I've tried everything - @>, ANY, etc and looked at 20 questions on SO.
This is the closest I got but it only returns exact matches.
select * from t
where col = '["ABC"]';