Mybatis模糊查询

VideoMapper.java

    /**
     * 根据评分和标题模糊查询
     * @param point
     * @param title
     * @return
     */
    List<Video> selectByPointAndTitleLike(@Param("point") double point,@Param("title") String title);

VideoMapper.xml

    <select id="selectByPointAndTitleLike" resultType="net.cybclass.online.domain.Video">
select * from video where point=#{point} and title like concat('%',#{title},'%')
    </select>

 

posted @ 2020-07-08 22:02  陈彦斌  阅读(158)  评论(0)    收藏  举报