1.if标签
根据标签中的test属性所对应的表达式决定标签中的内容是否需要拼接到sql中复制
<!-- List<Emp> getEmpByDyCondition(Emp emp); -->
<select id="getEmpByDyConditionOne" resultType="Emp">
select * from t_emp where 1 = 1
<if test="empName != null and empName != ''">
and emp_name = #{empName}
</if>
<if test="age != null and age != ''">
and age = #{age}
</if>
<if test="sex != null and sex != ''">
and sex = #{sex}
</if>
<if test="email != null and email != ''">
and email = #{email}
</if>
</select>
复制
2.where标签
* 当where标签中有内容时,会自动生成where关键字,并且将内容前多余的and或or去掉
* 当where标签中没有内容时,此时where标签没有任何内容
* 注意:where标签不能将其中内容后面多余的and符号去掉,and只能放在前面复制
<select id="getEmpByDyConditionTwo" resultType="Emp">
select * from t_emp
<where>
<if test="empName != null and empName != ''">
and emp_name = #{empName}
</if>
<if test="age != null and age != ''">
and age = #{age}
</if>
<if test="sex != null and sex != ''">
and sex = #{sex}
</if>
<if test="email != null and email != ''">
and email = #{email}
</if>
</where>
</select>
复制
3.trim标签
* prefix/suffix:在trim标签中内容前面或后面添加指定内容
* prefixOverrides/suffixOverrides:将trim标签中内容前面或后面去掉指定内容复制
* 若标签中没有内容时,trim标签也没有任何效果复制
<select id="getEmpByDyCondition" resultType="Emp">
select <include refid="empColumns" /> from t_emp
<trim prefix="where" suffixOverrides="and|or" prefixOverrides="and|or">
<if test="empName != null and empName != ''">
and emp_name = #{empName}
</if>
<if test="age != null and age != ''">
and age = #{age}
</if>
<if test="sex != null and sex != ''">
and sex = #{sex}
</if>
<if test="sex = null and sex = ''">
and sex = '男'
</if>
<if test="email != null and email != ''">
and email = #{email}
</if>
</trim>
</select>
复制
4.choose、when、otherwise标签
相当于if...else if...else
* when至少要有一个,otherwise最多只有一个复制
<!--List<Emp> getEmpByChoose(Emp emp);-->
<select id="getEmpByChoose" resultType="Emp">
select * from t_emp
<where>
<choose>
<when test="empName != null and empName != ''">
emp_name = #{empName}
</when>
<when test="age != null and age != ''">
and age = #{age}
</when>
<when test="sex != null and sex != ''">
and sex = #{sex}
</when>
<when test="email != null and email != ''">
and email = #{email}
</when>
<otherwise> did = 1 </otherwise>
</choose>
</where>
</select>
复制
5.foreach标签
* collection:设置需要循环的数组或集合
* item:表示数组或集合中的每一条数据
* separator:循环体之间的分割符
* open:foreach标签所循环的所有内容的开始符
* close:foreach标签所循环的所有内容的结束符复制
<!--int deleteMoreByarray(Integer[] eids);-->
<delete id="deleteMoreByarray">
<!--方法1
delete from t_emp where eid in
<foreach collection="eids" item="eid" separator="," open="(" close=")">
#{eid}
</foreach>
-->
<!--方法二-->
delete from t_emp where
<foreach collection="eids" item="eid" separator="or">
eid = #{eid}
</foreach>
</delete>
<!--int insertMoreByList(@Param("emps") List<Emp> emps);-->
<insert id="insertMoreByList">
insert into t_emp(emp_name,password,age,sex,email) values
<foreach collection="emps" item="emp" separator=",">
(#{emp.empName},#{emp.password},#{emp.age},#{emp.sex},#{emp.email})
</foreach>
</insert>
复制
6.sql标签
* 设置sql片段:<sql id="empColumns">eid,emp_name,age,sex,email</sql>
* 引用sql片段:select <include refid="empColumns" /> from t_emp复制
<sql id="empColumns">eid,emp_name,age,sex,email</sql>
<select id="getEmpByDyCondition" resultType="Emp">
select <include refid="empColumns" /> from t_emp
</select>
复制
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。
评论
相关阅读
配置MyBatis连接GBase8s
嘿嘿嘿
29次阅读
2025-03-22 12:45:25
Spring Boot 与 MyBatis Plus 整合 KWDB 实现 JDBC 数据访问
KaiwuDB
28次阅读
2025-03-21 10:34:00
Mybatis解决字段名和属性名的映射
嘿嘿嘿
25次阅读
2025-03-26 22:17:03
Mybatis学习之各种查询功能
嘿嘿嘿
25次阅读
2025-03-23 15:26:22
如何一眼定位SQL的代码来源:一款SQL染色标记的简易MyBatis插件
京东云开发者
25次阅读
2025-03-05 11:47:35
GBase8s+Mybatis之模糊查询
嘿嘿嘿
22次阅读
2025-03-24 22:13:34
MyBatis获取自增的主键
嘿嘿嘿
19次阅读
2025-03-25 21:22:00
《MyBatis剑谱之谜》—— XML剑宗 vs 注解气宗,谁是持久层真王者?
让天下没有难学的编程
11次阅读
2025-03-06 08:30:40