A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 江山美人 初级黑马   /  2019-6-12 13:58  /  614 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  <!--sql抽取-->
    <sql id="selectuser">
        select * from user
    </sql>
   
    <!--动态if-->
    <select id="fandByAll" parameterType="com.itheima.domain.User" resultType="com.itheima.domain.User">
        <include refid="selectuser"></include>
        <where>
            <if test="id!=0">
                and id =#{id}
            </if>
            <if test="username!=null">
                and username =#{username}
            </if>
            <if test="password!=null">
                and password =#{password}
            </if>
        </where>
    </select>
    <select id="fandById" parameterType="list" resultType="com.itheima.domain.User">
        <include refid="selectuser"></include>
        <where>
            <foreach collection="list" open="id in (" close=")" separator="," item="id">
                #{id}
            </foreach>
        </where>
    </select>

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马