MyBatis——模糊查询

在mybatis中可以使用三种模糊查询的方式:

<!-- 模糊查询 -->
<select id="selectListByTitle" parameterType="java.lang.String" resultType="com.yijian.mybatis.pojo.User">
<!-- 三种方法都可以 -->
select * from user where userName like '%${value}%' select * from user where userName like "%"#{userName}"%" select * from user where userName like concat("%",#{userName},"%")
</select>
上一篇:java 线程基础篇,看这一篇就够了。


下一篇:oracle之sequence详解