I have few fields in one table which are storing comma separated values. I can show query using like or FIND_IN_SET to find data from comma separated values.
MySQL query finding values in a comma separated string
However, I would like to know that how much both options FIND_IN_SET('red',colors)
& like with comma giving performance impact? Are they used field indexing to provide result?
If not then how can we optimize query and fetch data fast from comma separated fields using index?