動態sql

 <select id="findUserList" parameterType="user" resultType="user">
       select * from user 
       <where>
       <if test="id!=null and id!=''">
       and id=#{id}
       </if>
       <if test="username!=null and username!=''">
       and username like '%${username}%'
       </if>
       </where>
    </select>

<where />能夠自動處理第一個andspa

相關文章
相關標籤/搜索