我的表单中有一个字符串,$string = 'London,Paris,Birmingham'我想搜索多个列以查找这些值的出现。
$string = 'London,Paris,Birmingham'
例如 WHERE events.name, events.cities, events.counties IN (".($string).")
WHERE events.name, events.cities, events.counties IN (".($string).")
有人可以推荐我一种简单而又简短的方法来做这样的事情。
使用FIND_IN_SET函数:
WHERE ( FIND_IN_SET(events.name, mysql_real_escape_string($string)) > 0 OR FIND_IN_SET(events.cities, mysql_real_escape_string($string)) > 0 OR FIND_IN_SET(events.counties, mysql_real_escape_string($string)) > 0)