I have a Postgres DB and I have table A with a field category which is a string Array.
How do i find all records on Table A whose category array field contains the all the strings in this array? --> ['test1', 'test2'].
Searching on google give me only when category is a String. But in my case it is an array.