99热这里有精品-夜夜嗨av色一区二区不卡-亚洲国产精彩中文乱码AV-日本japanese乳偷乱熟

MyBatis框架

5.4 set

  • set 主要是用于解決修改操作中SQL語句中可能多出逗號的問題

<update id="updateEmpByConditionSet">

?????????????????? update? tbl_employee?

?????????????????? <set>

??????????????????????????? <if test="lastName!=null &amp;&amp; lastName!=&quot;&quot;">

???????????????????????????????????? ?last_name = #{lastName},

??????????????????????????? </if>

??????????????????????????? <if test="email!=null and email.trim()!=''">

???????????????????????????????????? ?email = #{email} ,

??????????????????????????? </if>

??????????????????????????? <if test="&quot;m&quot;.equals(gender) or &quot;f&quot;.equals(gender)">

???????????????????????????????????? gender = #{gender}

??????????????????????????? </if>

?????????????????? </set>

?????????????????? ?where id =#{id}

???????? </update>

 

5.5 choose(when、otherwise)

  • choose 主要是用于分支判斷,類似于java中的switch case,只會滿足所有分支中的一個

<select id="getEmpsByConditionChoose" resultType="com.atguigu.mybatis.beans.Employee">

????????????? select id ,last_name, email,gender from tbl_employee

????????????? <where>

???????????????????? <choose>

??????????????????????????? <when test="id!=null">

?????????????????????????????????? id = #{id}

??????????????????????????? </when>

??????????????????????????? <when test="lastName!=null">

?????????????????????????????????? last_name = #{lastName}

??????????????????????????? </when>

??????????????????????????? <when test="email!=null">

?????????????????????????????????? email = #{email}

??????????????????????????? </when>

??????????????????????????? <otherwise>

?????????????????????????????????? ?gender = 'm'

??????????????????????????? </otherwise>

???????????????????? </choose>

????????????? </where>

</select>

 

 

墨玉县| 宜都市| 澎湖县| 信丰县| 禹城市| 湘乡市| 丹阳市| 彩票| 保亭| 南丹县| 延吉市| 樟树市| 运城市| 井研县| 山西省| 祁阳县| 阳原县| 东平县| 井陉县| 驻马店市| 台湾省| 杭州市| 金川县| 阜康市| 澳门| 黄龙县| 清河县| 临泉县| 南阳市| 会昌县| 长垣县| 溧阳市| 隆化县| 和田县| 洞口县| 滕州市| 津市市| 蚌埠市| 高平市| 石林| 林州市|