i want to find the rows that have at least i item in an array in common with my query array.
this is close to what i want:
SELECT *
FROM Table
WHERE column IN (1, 2, 3)
column contains data from an array stored as a string. for example:
i am looking for any row that has a 1,2 or 3 in it.
row 1.column = 1
row 2.column = 3,6,7
row 3.column = 8,9,10,11
i would like row 1 and row 2, but not row 3.
or, would it be better to store each item of array as a separate row?