mybatis中mapper进行if条件判断

  • Post author:
  • Post category:其他


目的: 在使用mybatis框架中mapper文件有自动生成,但有时需要自己添加sql语句进行开发,当遇到需要使用 if进行条件判断的时候该怎么写?

查询sql语句如下:

<select id="queryData" parameterType="com.pojo.QueryDetailReq" resultType="com.pojo.MxDataInfo">
		select * from db_trd.tb_trd_secu_order where order_status=6
        <if test="channelNo!= null" >
         and channel_no = #{channelNo,jdbcType=INTEGER}
        </if>
        <if test="reportNo!=null" >
         and report_no = #{reportNo,jdbcType=INTEGER}
        </if>
        <if test="companyNo!= null" >
          and company_no = #{companyNo,jdbcType=VARCHAR}
        </if>
        <if test="orderNo!=null" >
          and order_no = #{orderNo,jdbcType=INTEGER}
        </if>
        <if test="stockCode!=null" >
          and stock_code = #{stockCode,jdbcType=VARCHAR}
        </if>
	</select>

语句解析: 1、if语句的格式 ;  2、test中的字段 为parameterType中

com.pojo.QueryDetailReq


的对象 (入参)   3、resultType 为返回查询数据对象  (结果集)



版权声明:本文为yuanyuan214365原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。