where后使用concat

两个以上的查询条件,每个条件都是数组,如果用以下方式会出现笛卡尔积

select * from t where t.c1 in ('a','b') and t.c2 in ('1','2');

可以在where后使用concat,来查询条件为a1,b2的数据

select * from t where concat(t.c1,'_',t.c2) in ('a_1', 'b_2');

在mybatis中使用

<select id="queryWithConcat" resultType="EntityA">
  select *
  from t_goods t   
  where .valid = 1
  <if test="params.keys != null and params.keys.size()>0">
    CONCAT(t.c1, '_', t.c2) in
    <foreach collection="params.keys" open="(" close=")" separator="," item="item">
      #{item}
    </foreach>
  </if>
</select>
posted @ 2022-07-25 16:53  dev_liufq  阅读(462)  评论(0编辑  收藏  举报