I don't think it is worth to try for a solution with multiple OR conditions using FIND_IN_SET()
where myColumn
might contain data as 1,2,3
or 2,3,6..
in random
FIND_IN_SET( '1', myColumn ) OR FIND_IN_SET( '3', myColumn ) OR FIND_IN_SET( '5', myColumn )
If this is not the right one, I might require a normalised solution to suit my query