美文网首页
关于mybatis模糊查询查不出数据的情况

关于mybatis模糊查询查不出数据的情况

作者: 翁也 | 来源:发表于2021-12-11 21:21 被阅读0次

    service层

    List channelList =adChannelMapper.findByNameAndPage(dto.getPage(), dto.getSize(), dto.getChannel());

    mapper层

    public List findByNameAndPage(int page,int size, String channel);

    sql

    <mapper namespace="com.heima.apis.admin.mapper.AdChannelMapper">

    <select id="findByNameAndPage"  resultType="com.heima.model.admin.pojos.AdChannel">

    select* from ad_channel where name like CONCAT('%',#{channel},'%') limit #{page},#{size}

    </select>

    </mapper>

    必须添加这个CONCAT('%',#{channel},'%'),不然查不出。

    相关文章

      网友评论

          本文标题:关于mybatis模糊查询查不出数据的情况

          本文链接:https://www.haomeiwen.com/subject/tfrlfrtx.html