Mybatis标签bind用法
Posted bihang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis标签bind用法相关的知识,希望对你有一定的参考价值。
Mybatis使用bind元素进行模糊查询,不用在乎数据库是mysql还是oracle从而提高可移植性
使用bind元素传递多个参数
public List<Student> findStudents(@Param("studentName")String studentName,@Param("note")String note)
<select id="getStudent" resultMap="studentMap" >
<bind name="pattern_studentName" value="‘%‘ + studentName + ‘%‘" />
<bind name="pattern_note" value="‘%‘ + note + ‘%‘" />
select id, cnname, sex, selfcard_no, note
from t_student
where student_name like #{pattern_studentName}
and note like #{note}
</select>
以上是关于Mybatis标签bind用法的主要内容,如果未能解决你的问题,请参考以下文章
MYBATIS05_ifwherechoosewhentrimsetforEach标签sql片段