在mybatis中模糊查询有三种写法
Posted 奋斗的孩子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在mybatis中模糊查询有三种写法相关的知识,希望对你有一定的参考价值。
<select id="selectStudentsByName" resultType="Student">
<!--第一种-->
<!-- select id,name,age,score from student where name like ‘%‘ #{0} ‘%‘ -->
<!--第二种-->
<!-- select id,name,age,score from student where name like concat(‘%‘, #{0}, ‘%‘) -->
<!--第三种-->
<!--‘%${value}%‘ :为字符串拼接 -->
select id,name,age,score from student where name like ‘%${value}%‘
</select>
以上是关于在mybatis中模糊查询有三种写法的主要内容,如果未能解决你的问题,请参考以下文章