Cảm ơn MyBatis Generator
của tệp mapper.xml, tôi đã học cách loại bỏ dấu phẩy. MyBatis có thẻ <set>
xóa dấu phẩy cuối cùng. Nó cũng được viết bằng MyBatis - Sql động
:
Bạn có thể viết nó là:
<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>