mysql 一个表中的字段like另一个表中的字段


select a.name,b.company from a a,b b where a.tag like concat ('%',b.tag ,'%')

相关