欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2022-04-05 17:58:40
...
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