<!--List<Emp> getEmpByCondition(Emp emp);--><selectid="getEmpByConditionOne"resultType="Emp"><!--if根据标签中test属性对应的判断条件,判断下面语句是否拼接到SQL语句中-->
select * from t_emp where 1 = 1
<iftest="empName != null and empName !=''">
emp_name = #{empName}
</if><iftest="age != null and age !=''">
and age = #{age}
</if><iftest="sex != null and sex !=''">
and sex = #{sex}
</if><iftest="email != null and email !=''">
and email = #{email}
</if></select>
where
当where标签中有内容时,会自动生成where关键字,并能去除多余的and或or标签
当where标签中无内容时,此时where标签没有任何效果
注:where标签不能将其中内容后面多余的and或or去除
<selectid="getEmpByConditionTwo"resultType="Emp"><!--
where:当where标签中有内容时,会自动生成where关键字,并能去除多余的and或or标签
当where标签中无内容时,此时where标签没有任何效果
注:where标签不能将其中内容后面多余的and或or去除-->
select * from t_emp
<where><if