select examinee_id, student_id, paper_type, paper_id, paper_key, paper_info, begin_time, end_time, duration, stats, state, score_level, score, score_rate, ranking, grade_ranking, wrong_count, choose_count, choose_total, subjective_count, subjective_total, create_time, update_time from learn_examinee
insert into learn_examinee
student_id,
paper_type,
paper_id,
paper_key,
paper_info,
begin_time,
end_time,
duration,
stats,
state,
score_level,
score,
score_rate,
ranking,
grade_ranking,
wrong_count,
choose_count,
choose_total,
subjective_count,
subjective_total,
create_time,
update_time,
#{studentId},
#{paperType},
#{paperId},
#{paperKey},
#{paperInfo},
#{beginTime},
#{endTime},
#{duration},
#{stats},
#{state},
#{scoreLevel},
#{score},
#{scoreRate},
#{ranking},
#{gradeRanking},
#{wrongCount},
#{chooseCount},
#{chooseTotal},
#{subjectiveCount},
#{subjectiveTotal},
#{createTime},
#{updateTime},
update learn_examinee
student_id = #{studentId},
begin_time = #{beginTime},
end_time = #{endTime},
duration = #{duration},
stats = #{stats},
state = #{state},
score_level = #{scoreLevel},
score = #{score},
score_rate = #{scoreRate},
ranking = #{ranking},
grade_ranking = #{gradeRanking},
wrong_count = #{wrongCount},
choose_count = #{chooseCount},
choose_total = #{chooseTotal},
subjective_count = #{subjectiveCount},
subjective_total = #{subjectiveTotal},
create_time = #{createTime},
update_time = #{updateTime},
where examinee_id = #{examineeId}
delete from learn_examinee where examinee_id = #{examineeId}
delete from learn_examinee where examinee_id in
#{examineeId}