MySQL find_in_set with multiple search string
Posted Date:20-02-2017 This Post will explain how to search multiple string in mysql without using find_in_set function. In mysql find_in_set function possible check only string like this Example: find_in_set(‘a’,’a,b,c,d’) But not possible Search like this find_in_set(‘a,b,c,d’,’a,b,c,d’) if the we want multiple search the text only possible like this find_in_set(‘a’, ‘a,b,c,d’)… Continue Reading MySQL find_in_set with multiple search string