mybatis模糊查询的sql语句的标准写法
以创建了一个work表 其中的一个类型为type为例 如果直接以如下语句对work表中的type进行查询是识别不到的
select * from worker where type like '%{type,jdbcType=VARCHAR}%'
这时就要借助conact
把 ‘%’ 和#{type,jdbcType=VARCHAR}作为内层concat的两个参数
把concat(’%’,#{type,jdbcType=VARCHAR}) 和 '%'作为外层concat的两个参数
select * from worker where type like concat(concat('%',#{type,jdbcType=VARCHAR}),'%')