• mybatis入门截图三


     

     

    -----------------------------------------------

        <!-- 用户信息的综合查询 -->
        <select id="userlist" parameterType="org.mybatis.po.UserQueryVo" resultType="org.mybatis.po.UserCustom">
            <!-- 原来的sql -->
            <!-- select *from user where user.sex=#{userCustom.sex} and user.username like '%${userCustom.username}%' -->
            <!-- 动态sql -->
            select *from user 
            <where>
                <if test="userCustom!=null">
                    <if test="userCustom.sex!=null and userCustom.sex!=''">
                        and user.sex=#{userCustom.sex}
                    </if>
                    <if test="userCustom.username!=null and userCustom.username!=''">
                        and user.username=#{userCustom.username}
                    </if>
                </if>
            </where>
        </select>

    这样在传入参数时,传递null  也不会报错。即sql语句没有where条件  查询所有  

    ------------------------------------------

    -------------------------

     

  • 相关阅读:
    The nineteenth day
    The eighteen day
    弱读下
    弱读上
    失爆 爆破音
    连读
    The seventeenth day
    The sixteenth day
    React 官方脚手架 create-react-app快速生成新项目
    pc端引入微信公众号文章
  • 原文地址:https://www.cnblogs.com/Joke-Jay/p/7471318.html
Copyright © 2020-2023  润新知