Let's assume I have this array
$arr = array(1,2,3,4,5,6,7,8,9);
Then I also have a database table column which the value is imploded
column = '3,5,8,2,4';
Now I want to run a mysql query on each of the $arr
value to see if it is in the column
I know FIND_IN_SET
can go just for a string but I don't know if it's possible to do the FIND_IN_SET
for an array.