首页 > 数据库技术 > 详细

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

时间:2018-03-26 23:58:58      阅读:987      评论:0      收藏:0      [点我收藏+]
 
<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语句完成多条件查询

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!