欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mybatis中动态SQL,if,where,foreach的使用教程详解

程序员文章站 2023-12-21 08:09:40
mybatis的动态sql是基于ognl表达式的,它可以帮助我们方便的在sql语句中实现某些逻辑。 mybatis中用于实现动态sql的元素主要有: if...

mybatis的动态sql是基于ognl表达式的,它可以帮助我们方便的在sql语句中实现某些逻辑。

mybatis中用于实现动态sql的元素主要有:

  • if
  • choose(when,otherwise)
  • trim
  • where
  • set
  • foreach

mybatis核心 对sql语句进行灵活操作,通过表达式进行判断,对sql进行灵活拼接、组装。

1、statement中直接定义使用动态sql:

在statement中利用if 和 where 条件组合达到我们的需求,通过一个例子来说明:

原sql语句:

<select id="finduserbyuserquveryvo" parametertype ="userqueryvo" resulttype="usercustom">
 select * from user
 where username = #{usercustom.username} and sex = #{usercustom.sex}
</select>

现在需求是,如果返回值usercustom为空或者usercustom中的属性值为空的话(在这里就是usercustom.username或者usercustom.sex)为空的话我们怎么进行灵活的处理是程序不报异常。做法利用if和where判断进行sql拼接。

<select id="finduserbyuserquveryvo" parametertype ="userqueryvo" resulttype="usercustom">
 select * from user
<where>
 <if test="usercustom != null">
 <if test="usercustom.username != null and usercustom.username != ''"><!-- 注意and不能大写 -->
  and username = #{usercustom.username}
 </if>
 <if test="usercustom.sex != null and usercustom.sex != ''">
  and sex = #{usercustom.sex}
 </if>
 </if>
</where>
</select>

有时候我们经常使用where 1=1这条语句来处理第一条拼接语句,我们可以使用< where > < where />来同样实现这一功能。

2、使用sql片段来处理statement

和我们写程序一样,有时候会出现一些重复的代码,我们可以用sql片段来处理。在sql片段中需要注意的是它的位置,我们也可以引用其它mapper文件里面的片段,此时需要我们定义它的位置。

(1)、sql片段的定义

<sql id="query_user_where">
 <if test="sex != null and sex != ''">
  and sex = #{sex}
 </if>
 <if test="id != null">
  and id = #{id}
 </if>
</sql>

(2)、sql片段的使用

<select id="finduserlist" parametertype="user" resulttype="user">
 select * from user
 <where>
 <!-- 引用sql片段 -->
 <include refid="query_user_where"></include>
 <!-- 在这里还要引用其它的sql片段 -->
 <!-- 
 where 可以自动去掉条件中的第一个and
 -->
 <!-- <if test="sex != null and sex != ''">
  and sex = #{sex}
 </if>
 <if test="id != null">
  and id = #{id}
 </if> -->
 </where>
</select>

3、使用foreach进行sql语句拼接

在向sql传递数组或list,mybatis使用foreach解析,我们可以使用foreach中元素进行sql语句的拼接,请求数据。

通过一个例子来看:

需求:select * from user where id=1 or id=10 or id=16

或者:select * from user where id in(1,10,16)

<if test="ids != null"> 
 <foreach collection="ids" item="user_id" open="and (" close=")" separator="or" >
 每次遍历需要拼接的串
  id= #{user_id}
 </foreach>
 </if>

其中,collection:指定输入对象中集合属性,item: 每个遍历生成对象,open:开始遍历时拼接串,close: 结束遍历是拼接的串,separator: 遍历的两个对象中需要拼接的串

<if test="ids != null"> 
 <foreach collection="ids" item="user_id" open="and id in(" close=")" separator=",">
  id= #{user_id}
 </foreach>
</if>

总结

以上所述是小编给大家介绍的mybatis中动态sql,if,where,foreach的使用教程,希望对大家有所帮助

上一篇:

下一篇: