id, `table_name`, hs_cloud_last_time
delete
from table_log
where id = #{id,jdbcType=INTEGER}
insert into table_log (`table_name`, hs_cloud_last_time)
values (#{tableName,jdbcType=VARCHAR}, #{hsCloudLastTime,jdbcType=VARCHAR})
Sqlite
insert into table_log
`table_name`,
hs_cloud_last_time,
#{tableName,jdbcType=VARCHAR},
#{hsCloudLastTime,jdbcType=VARCHAR},
update table_log
`table_name` = #{tableName,jdbcType=VARCHAR},
hs_cloud_last_time = #{hsCloudLastTime,jdbcType=VARCHAR},
where id = #{id,jdbcType=INTEGER}
update table_log
set `table_name` = #{tableName,jdbcType=VARCHAR},
hs_cloud_last_time = #{hsCloudLastTime,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}