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>
相关推荐
xiuyangsong 2020-07-26
Dullonjiang 2020-07-19
专注前端开发 2020-10-21
苏康申 2020-11-13
vitasfly 2020-11-12
oraclemch 2020-11-06
liuyang000 2020-09-25
FellowYourHeart 2020-10-05
赵继业 2020-08-17
whyname 2020-08-16
Seandba 2020-08-16
dbasunny 2020-08-16
拼命工作好好玩 2020-08-15
langyue 2020-08-15
写程序的赵童鞋 2020-08-03
Accpcjg 2020-08-02
tydldd 2020-07-30