Terima kasih kepada MyBatis Generator
's mapper.xml, saya telah mempelajari cara menekan koma. MyBatis memiliki tag <set>
yang menghapus koma terakhir. Itu juga ditulis dalam MyBatis - Dynamic Sql
:
Anda dapat menulisnya sebagai:
<update id="update" parameterType="User">
UPDATE user
<set>
<if test="username != null">
username = #{username},
</if>
<if test="password != null">
password = #{password},
</if>
<if test="email != null">
email = #{email},
</if>
</set>
WHERE id = #{id}
</update>