其他分享
首页 > 其他分享> > where后使用concat

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>

标签:查询,concat,使用,c2,c1,where,select
来源: https://www.cnblogs.com/assembly--/p/16517940.html