I have column arr which is of type array.
arr
array
I need to get rows, where arr column contains value s
s
This que
SELECT * FROM table WHERE arr && '{s}'::text[];
Compare two arrays for containment.