1、查看是否包含子串 示例:查询userId包含子串'xx'的数据 -- position SELECT * FROM `object` WHERE find_in_set('xx', userId) > 0; ......