我的博客
欢迎来到我的博客
bunny.icu

MyBatis mapper中的模糊查询

MyBatis mapper中的模糊查询
<select id="getMaintainersByBranchSchoolIdAndMaintainerName" resultMap="BaseResultMap" parameterType="com.iclass.vo.QueryVo">
  select
  <include refid="Base_Column_List" />
    from account left join maintainer_association on account.user_id = maintainer_association.maintainer_id
    <where>
        name like "%"#{name}"%"
    </where>
</select>
"%"#{name}"%"

版权声明


本作品系原创, 转载须遵循 CC BY-NC-ND 4.0 许可协议
本文标题:MyBatis mapper中的模糊查询
本文链接:https://www.bunny.icu/archives/1192

推荐文章

发表评论

textsms
account_circle
email

bunny.icu

MyBatis mapper中的模糊查询
mapper中的模糊查询
扫描二维码继续阅读
2018-08-03