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