select examinee_id, student_id, paper_type, paper_id, begin_time, end_time, state, score_level, score, score_rate, ranking, grade_ranking, 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,
begin_time,
end_time,
state,
score_level,
score,
score_rate,
ranking,
grade_ranking,
choose_count,
choose_total,
subjective_count,
subjective_total,
create_time,
update_time,
#{studentId},
#{paperType},
#{paperId},
#{beginTime},
#{endTime},
#{state},
#{scoreLevel},
#{score},
#{scoreRate},
#{ranking},
#{gradeRanking},
#{chooseCount},
#{chooseTotal},
#{subjectiveCount},
#{subjectiveTotal},
#{createTime},
#{updateTime},
update learn_examinee
student_id = #{studentId},
paper_type = #{paperType},
paper_id = #{paperId},
begin_time = #{beginTime},
end_time = #{endTime},
state = #{state},
score_level = #{scoreLevel},
score = #{score},
score_rate = #{scoreRate},
ranking = #{ranking},
grade_ranking = #{gradeRanking},
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}