码迷,mamicode.com
首页 > 数据库 > 详细

MyBatis中动态SQL语句完成多条件查询

时间:2018-03-27 01:52:12      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:detail   语句   null   entity   net   sdn   mybatis   class   result   

 
<select id="queryEmp"  resultType="cn.test.entity.Emp">
          select * from emp where 1=1
          <if test="deptNo!=null">
          and deptno=#{deptNO}
          </if>
          <if test="deptName!=null">
          and deptno=#{deptName}
          </if>
          </select>

MyBatis中动态SQL语句完成多条件查询

标签:detail   语句   null   entity   net   sdn   mybatis   class   result   

原文地址:https://www.cnblogs.com/2016-cxp/p/8654727.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!