id, name, password, create_date, create_time
delete from user
where id = #{id,jdbcType=INTEGER}
insert into user (id, name, password,
create_date, create_time)
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR},
#{createDate,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR})
insert into user
id,
name,
password,
create_date,
create_time,
#{id,jdbcType=INTEGER},
#{name,jdbcType=VARCHAR},
#{password,jdbcType=VARCHAR},
#{createDate,jdbcType=VARCHAR},
#{createTime,jdbcType=VARCHAR},
update user
name = #{name,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
create_date = #{createDate,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=VARCHAR},
where id = #{id,jdbcType=INTEGER}
update user
set name = #{name,jdbcType=VARCHAR},
password = #{password,jdbcType=VARCHAR},
create_date = #{createDate,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}