黑马程序员技术交流社区

标题: 【成都校区】 myBatis动态sql [打印本页]

作者: 江山美人    时间: 2019-6-12 13:58
标题: 【成都校区】 myBatis动态sql
  <!--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>




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2