Mybatis动态SQL单一基础类型参数用if标签

Posted 迷茫王子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mybatis动态SQL单一基础类型参数用if标签相关的知识,希望对你有一定的参考价值。

Mybatis动态SQL单一基础类型参数用if标签时,test中应该用 _parameter,如:

<select id="selectByName" resultMap="ResultMap" parameterType="java.lang.String" >  
    select * from table1  
    <if test="_parameter != null">  
        where _name = #{name}  
    </if>  
</select>  

  

以上是关于Mybatis动态SQL单一基础类型参数用if标签的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis从入门到精通:MyBatis动态Sql之if标签的用法

mybatis 动态sql和参数

MyBatis解析<if>动态sql时,Integer类型值为0,返回false

mybatis 动态sql语句怎么写if else

mybatis从入门到精通 动态SQL

Mybatis 动态 sql 有什么用?执行原理?有哪些动态 sql?