id, name, sort
delete from nation
where id = #{id,jdbcType=VARCHAR}
insert into nation (id, name, sort
)
values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{sort,jdbcType=INTEGER}
)
insert into nation
id,
name,
sort,
#{id,jdbcType=VARCHAR},
#{name,jdbcType=VARCHAR},
#{sort,jdbcType=INTEGER},
update nation
name = #{name,jdbcType=VARCHAR},
sort = #{sort,jdbcType=INTEGER},
where id = #{id,jdbcType=VARCHAR}
update nation
set name = #{name,jdbcType=VARCHAR},
sort = #{sort,jdbcType=INTEGER}
where id = #{id,jdbcType=VARCHAR}