select id, title, answer, type, label, category_id, create_by, create_date, update_by, update_date, remarks, del_flag from exam_question
insert into exam_question
id,
title,
answer,
type,
label,
category_id,
create_by,
create_date,
update_by,
update_date,
remarks,
del_flag,
#{id},
#{title},
#{answer},
#{type},
#{label},
#{categoryId},
#{createBy},
#{createDate},
#{updateBy},
#{updateDate},
#{remarks},
#{delFlag},
update exam_question
title = #{title},
answer = #{answer},
type = #{type},
label = #{label},
category_id = #{categoryId},
create_by = #{createBy},
create_date = #{createDate},
update_by = #{updateBy},
update_date = #{updateDate},
remarks = #{remarks},
del_flag = #{delFlag},
where id = #{id}
delete from exam_question where id = #{id}
delete from exam_question where id in
#{id}