I have the following table:
╔════╦════════════════════════════════════════╗
║ id ║ value ║
╠════╬════════════════════════════════════════╣
║ 1 ║ ['friend', 'apple', 'cat'] ║
║ 2 ║ ['cat', 'friend', 'dog'] ║
║ 3 ║ ['pasta', 'best-friend', 'lizard'] ║
║ 4 ║ ['wildcat', 'potato', 'alices-friend'] ║
╚════╩════════════════════════════════════════╝
My goal is to return all rows where value contains a given array. For example:
['friend', 'cat']should return rows1and2.['%friend%', '
