select answer_id, examinee_id, examinee_type, paper_type, question_id, seq, knowledge_id, answer, correct, duration, count, state, score_level, score, score_rate from mxjb_paper_answers
insert into mxjb_paper_answers
examinee_id,
examinee_type,
paper_type,
question_id,
seq,
knowledge_id,
answer,
correct,
duration,
count,
state,
score_level,
score,
score_rate,
#{examineeId},
#{examineeType},
#{paperType},
#{questionId},
#{seq},
#{knowledgeId},
#{answer},
#{correct},
#{duration},
#{count},
#{state},
#{scoreLevel},
#{score},
#{scoreRate},
update mxjb_paper_answers
examinee_id = #{examineeId},
examinee_type = #{examineeType},
paper_type = #{paperType},
question_id = #{questionId},
seq = #{seq},
knowledge_id = #{knowledgeId},
answer = #{answer},
correct = #{correct},
duration = #{duration},
count = #{count},
state = #{state},
score_level = #{scoreLevel},
score = #{score},
score_rate = #{scoreRate},
where answer_id = #{answerId}
delete from mxjb_paper_answers where answer_id = #{answerId}
delete from mxjb_paper_answers where answer_id in
#{answerId}