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

Posted 青蛙跳跳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis中动态SQL语句完成多条件查询相关的知识,希望对你有一定的参考价值。

 
<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语句完成多条件查询的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis动态SQL

三:动态SQL

java框架之mybatis(动态SQL)

动态SQL

MyBatis基础入门《十七》动态SQL

Mybatis动态SQL语句使用