etms/WEB-INF/mapping/et_exam_question.map.xml

21 lines
613 B
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<dynamic-sql>
<sql id="getQuestionsList"><![CDATA[
select * from et_exam_question where 1=1
<@p p=" and %s">card</@p>
<@p p=" and (question_type like ? ">question_type</@p>
<@p p=" or subject like ? ">subject</@p>
<@p p=" or category like ? )">category</@p>
]]></sql>
<sql id="checkIdRepeated"><![CDATA[
select * from et_exam_question where
<@p>id</@p>
]]></sql>
<sql id="getQuestionIsNotLoginer"><![CDATA[
select card from et_exam_question
where <@p>id</@p>
]]></sql>
</dynamic-sql>