Mybatis 中把更新的语句写在标签中,每个if都添加,组合sql的时候回自动去掉,符号 <updateid="updateSetting"> updategk_cmpt_func <set> <iftest="setting.mobile != null"> switch_mobile=#{setting.mobile}, </if> <iftest="setting.countDown != null"> switch_countdown=#{setting.countDown}, </if...
= ''">OperScore = #{operScore},</if></set><where>AND ApplyId = #{applyId}</where></update> 使用<set>标签可以去掉最后一个动态sql拼接的,号 2喜欢