I have a table that as a column called 'country_codes', this is a comma delimited list of country codes (i.e., US,UK,CA), If I want to look up a record based on a country code I can use
But, what I would like to do now is fine ANY records from multiple sets, such as find_in_set('US,CA', country_codes), and if any of the two first values are found, return the record.find_in_set('US', country_codes)
Any ideas?