项目场景:
数据结构
其中nameArr存储的是名字集合,现在的需求是传入"aaa","fff",需要把包含这两个name的数据都查出来。
解决方案:
可以使用
REGEXP
来匹配包含多个特定ID的字符串。使用以下正则表达式:
sql
select * from test
where nameArr regexp '"aaa"|"fff"'
使用mybatis实现
mapper
java
/**
* 正则匹配多个id字符串
*/
List<TestEntity> list(@Param("ids") List<String> ids);
xml
XML
<select id="list" resultType="com.test.TestEntity">
select * from test
<if test="ids != null and ids.size()>0">
and nameArr regexp concat('"',
concat_ws('"|"',
<foreach collection="ids" item="item" separator=",">
#{item}
</foreach>
),'"')
</if>
</select>
解析一下这个sql
ids这个集合会循环逗号拼接,打印sql
sql
select * from test
where nameArr regexp concat('"',concat_ws('"|"','aaa','fff'),'"')
最终的sql
sql
select * from test
where nameArr regexp '"aaa"|"fff"'