select examinee_id, paper_id, round, customer_code, begin_time, end_time, state, score_level, score, score_rate, ranking, stats from sy_test_examinee
insert into sy_test_examinee
paper_id,
round,
customer_code,
begin_time,
end_time,
state,
score_level,
score,
score_rate,
ranking,
stats,
#{paperId},
#{round},
#{customerCode},
#{beginTime},
#{endTime},
#{state},
#{scoreLevel},
#{score},
#{scoreRate},
#{ranking},
#{stats},
update sy_test_examinee
paper_id = #{paperId},
round = #{round},
customer_code = #{customerCode},
begin_time = #{beginTime},
end_time = #{endTime},
state = #{state},
score_level = #{scoreLevel},
score = #{score},
score_rate = #{scoreRate},
ranking = #{ranking},
stats = #{stats},
where examinee_id = #{examineeId}
delete from sy_test_examinee where examinee_id = #{examineeId}
delete from sy_test_examinee where examinee_id in
#{examineeId}