在mybatis 中使用if else 进行判断的操作

我就废话不多说了,大家还是直接看代码吧~

<!-- 查询物品的id -->
	<select id="checkItemsId" parameterType="pd" resultType="java.lang.Integer">
		SELECT
			i.itemsid
		FROM pq_goods_items i

		<where>
   <!--方式一使用choose的方式查询-->
   <!-- <choose>
    <when test="parentId !=0 ">parentTypeId=#{parentId}</when>
    <when test="parentId==0">parentTypeId is null</when>
   </choose> -->
   <!--方式二使用if的方式查询-->
   <if test="color!=null">
  	 i.personone=#{personone}
			AND i.persontwo=#{persontwo}
   AND i.color=#{color}
   </if>
   <if test="color==null">
   	 i.personone=#{personone}
			AND i.persontwo=#{persontwo}
   AND i.color is null
   </if>
  </where>
	</select>

需要注意的是 使用了where标签以后,sql中不在使用where字段来限制条件

如果判断条件有多个 中间用 and 表示并列

<if test="color!=null and personone!=null"> 

补充:mybaits中if 多个test 和 if else 分支支持

mybaits中if 多个test

<select id="selectByDynamicallyWithPage" parameterType="map" resultMap="BaseResultMap">
 select
 <include refid="Base_Column_List" />
 from gene_polymorphism
 <where>
  diag_id = #{conds.diagId,jdbcType=INTEGER}
  <if test="conds.chromesome!=null and conds.chromesome!=''">
  and chromesome = #{conds.chromesome,jdbcType=VARCHAR}
  </if>
  <if test="conds.startPos!=null">
  and start_pos &gt;= #{conds.startPos,jdbcType=BIGINT}
  </if>
 </where>
</select>

if else分支:

<select id="selectByDynamicallyWithPage" parameterType="map" resultMap="BaseResultMap">
 select
 <include refid="Base_Column_List" />
 from gene_polymorphism
 <where>
  diag_id = #{conds.diagId,jdbcType=INTEGER}
  <if test="conds.chromesome!=null">
  and chromesome = #{conds.chromesome,jdbcType=VARCHAR}
  </if>
  <if test="conds.startPos!=null">
  and start_pos &gt;= #{conds.startPos,jdbcType=BIGINT}
  </if>
  <if test="conds.endPos!=null">
  and end_pos &lt;= #{conds.endPos,jdbcType=BIGINT}
  </if>
  <if test="conds.geneTypes!=null">
  <!--and gene_type in-->
  <!--<foreach collection="conds.geneTypes" open="(" close=")" item="item" separator="," >-->
   <!--#{item,jdbcType=VARCHAR}-->
  <!--</foreach>-->
  and (
  <foreach collection="conds.geneTypes" item="item" separator="or">
   gene_type like CONCAT('%',CONCAT(#{item,jdbcType=VARCHAR}, '%'))
  </foreach>
  )
  </if>
  <if test="conds.geneChange!=null">
  and gene_change like CONCAT('%',CONCAT(#{conds.geneChange,jdbcType=VARCHAR}, '%'))
  </if>
 </where>
 order by
 <trim suffixOverrides=",">
  <choose>
  <when test="conds.chromesomeSort!=null and conds.chromesomeSort=='asc'">
   chromesome asc ,
  </when>
  <when test="conds.chromesomeSort!=null and conds.chromesomeSort=='desc'">
   chromesome desc ,
  </when>
  </choose>
  <choose>
  <when test="conds.startPosSort!=null and conds.startPosSort=='asc'">
   start_pos asc ,
  </when>
  <when test="conds.startPosSort!=null and conds.startPosSort=='desc'">
   start_pos desc ,
  </when>
  <otherwise>
   id desc
  </otherwise>
  </choose>
 </trim>
  limit #{startRow,jdbcType=INTEGER} ,#{pageSize,jdbcType=INTEGER}
 <!-- order by id desc limit #{startRow,jdbcType=INTEGER} ,#{pageSize,jdbcType=INTEGER} -->
 </select>

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。如有错误或未考虑完全的地方,望不吝赐教。

(0)

相关推荐

  • 解决mybatis where-if中if不能识别大写AND,OR的问题

    mybatis报错: Caused by: org.apache.ibatis.ognl.ParseException: Encountered " "AND "" at line 1 错误代码: <select id="selectAccountList" resultMap="BaseResultMap"> SELECT ct.customer_name customerName,sam.city_code,s

  • Mybatis 动态sql if 判读条件等于一个数字的案例

    在Mybatis中 mapper中 boolean updateRegisterCompanyFlag(@Param(value = "companyId") String companyId, @Param(value = "flag") String flag); 传入的flag类型为String,但在mapper.XML中进行判断是下意识地以为判断的值要加上引号 <if test=" '4' == flag "> , LAST_

  • mybatis的动态sql之if test的使用说明

    参数为String,if test读取该参数代码 <select id="getMaxDepartId" parameterType="java.lang.String" resultType="java.lang.String"> SELECT MAX(DEPART_ID) FROM T_P_DEPART <where> <if test="_parameter!=null and _parameter!

  • mybatis通过if语句实现增删改查操作

    有时候为了简化我们的代码. 1 举个例子 Student类: @Data public class Student { private Integer id; private Integer age; private Integer sno; } 有时候我们想通过age这个属性获取Student对象 有时候我们也想通过sno这个属性获取Student对象 难道我们在DAO层写两个接口? 比如这样子? Student getStudentByAge(Int age); Student getStu

  • 在mybatis中使用mapper进行if条件判断

    目的: 在使用mybatis框架中mapper文件有自动生成,但有时需要自己添加sql语句进行开发,当遇到需要使用 if进行条件判断的时候该怎么写? 查询sql语句如下: <select id="queryData" parameterType="com.pojo.QueryDetailReq" resultType="com.pojo.MxDataInfo"> select * from db_trd.tb_trd_secu_ord

  • mybatis的if判断不要使用boolean值的说明

    mybatis的if判断里面最好不要使用boolean值: mybatis会默认把空值转为false.所以如果遇见前段传空值,这个字段在mybatis里面永远就是false了, 可以使用数字类型代替,但是不要使用0作为参数: 补充知识:[MyBatis]<if test=""></if>标签的条件判断(Boolean类型参数) 在MyBatis 中,动态 SQL 元素和 JSTL 或基于类似 XML 的文本处理器相似. 在 MyBatis 3 之前的版本中,有很

  • 在mybatis 中使用if else 进行判断的操作

    我就废话不多说了,大家还是直接看代码吧~ <!-- 查询物品的id --> <select id="checkItemsId" parameterType="pd" resultType="java.lang.Integer"> SELECT i.itemsid FROM pq_goods_items i <where> <!--方式一使用choose的方式查询--> <!-- <cho

  • 在mybatis中去除多余的前缀或者后缀操作

    A.where 标签会自动删除第一个多余的and或者or,set标签会自动删除最后一个',' B.trim标记,是一个格式化的标记,可以完成set或者是where标记的功能,如下代码: 1. select * from user <trim prefix="WHERE" prefixoverride="AND |OR"> <if test="name != null and name.length()>0"> AND

  • mybatis中的多重if 条件判断

    目录 mybatis多重if条件判断 要注意的是 mybatis常用判断语法(标签) 1.if判断 2.choose判断 mybatis 多重if 条件判断 要注意的是 当指定某种情况的时候,条件需要添加 toString() 方法 mybatis常用判断语法(标签) 作为java开发,我们常用的判断有if.switch语句,其实在MyBatis中也有对应的标签,用于动态生成sql语句. 1. if判断 <where>     <if test="null != statusC

  • mybatis中的多重if 条件判断

    目录 mybatis 多重if 条件判断 要注意的是 mybatis常用判断语法(标签) if判断 choose判断 mybatis 多重if 条件判断 要注意的是 当指定某种情况的时候,条件需要添加 toString() 方法 mybatis常用判断语法(标签) 作为java开发,我们常用的判断有if.switch语句,其实在MyBatis中也有对应的标签,用于动态生成sql语句. if判断 <where>     <if test="null != statusCode a

  • mybatis中<if>标签bool值类型为false判断方法

    昨天实现一个功能,根据文章的id或者别名查找文章. 起初采用mybatis的Example进行查询,对参数artName进行判断,如果是纯数字就byId查询,否则就by别名.由于查询文章的同时,需要关联查询文章分类标签,所以选择采用select语句映射的方式查询,但又不想写两个查询方法,就使用了mybatis中动态sql. /** * 查询文章 * @param artName id 或 别名 * @param byId 如果是 true 则按照id查询 * 否则 按照别名查询 * @retur

  • Mybatis 中如何判断集合的size

    Mybatis中判断集合的size,可以用下面的方法来做. <if test="null != staffCodeList and staffCodeList.size > 0"> and gui.USER_CODE not in <foreach collection="staffCodeList" item="staffCode" open="(" separator="," c

  • mybatis中的if test判断入参的值问题

    目录 mybatis if test判断入参的值 1.第一种判断方式 2.第二种判断方式 if test动态判断数字时出现的错误 mybatis中if test判断数字 mybatis if test判断入参的值 1.第一种判断方式 <if test=' requisition != null and requisition == "Y" '>    AND 表字段 = #{requisition} </if> 2.第二种判断方式 <if test=&qu

  • 浅谈mybatis中的#和$的区别 以及防止sql注入的方法

    mybatis中的#和$的区别 1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号.如:order by #user_id#,如果传入的值是111,那么解析成sql时的值为order by "111", 如果传入的值是id,则解析成的sql为order by "id". 2. $将传入的数据直接显示生成在sql中.如:order by $user_id$,如果传入的值是111,那么解析成sql时的值为order by user_id,  如果传入的

  • MyBatis中如何优雅的使用枚举详解

    问题 本文主要给大家介绍的是关于MyBatis使用枚举的相关内容,我们在编码过程中,经常会遇到用某个数值来表示某种状态.类型或者阶段的情况,比如有这样一个枚举: public enum ComputerState { OPEN(10), //开启 CLOSE(11), //关闭 OFF_LINE(12), //离线 FAULT(200), //故障 UNKNOWN(255); //未知 private int code; ComputerState(int code) { this.code =

  • MyBatis中OGNL的使用教程详解

    前言 本文主要给大家讲如何在MyBatis中使用OGNL的相关内容,分享出来供大家参考学习,感兴趣的朋友们下面来一起看看详细的介绍: 如果我们搜索OGNL相关的内容,通常的结果都是和Struts有关的,你肯定搜不到和MyBatis有关的,虽然和Struts中的用法类似但是换种方式理解起来就有难度. MyBatis常用OGNL表达式 e1 or e2 e1 and e2 e1 == e2,e1 eq e2 e1 != e2,e1 neq e2 e1 lt e2:小于 e1 lte e2:小于等于,

随机推荐