id, uid, comment_id, create_time
SELECT LAST_INSERT_ID()
insert into comment_like (uid, comment_id, create_time
)
values (#{uid,jdbcType=BIGINT}, #{commentId,jdbcType=INTEGER}, #{createTime,jdbcType=TIMESTAMP}
)
SELECT LAST_INSERT_ID()
insert into comment_like
uid,
comment_id,
create_time,
#{uid,jdbcType=BIGINT},
#{commentId,jdbcType=INTEGER},
#{createTime,jdbcType=TIMESTAMP},
update comment_like
uid = #{uid,jdbcType=BIGINT},
comment_id = #{commentId,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP},
where id = #{id,jdbcType=INTEGER}
update comment_like
set uid = #{uid,jdbcType=BIGINT},
comment_id = #{commentId,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=INTEGER}
delete from comment_like
where id = #{id,jdbcType=INTEGER}