I have a table in which one of the columns has array of values e.g. {apple, banana, candy, dog, elephant}. I want to select all those rows from the table where that column has either 'apple' or 'dog'. I tried IN clause, but it did not work. What is syntax to search an array in PostgreSQL?