遍历
<!--foreach用于迭代数据的元素
open表示开始的符号
close表示结束符号
seprator表示元素间的分隔符
items表示迭代的数组
-->
<select id="getUserInCities" resultMap="BaseResultMap">
SELECT * FROM user2
WHERE address IN
<foreach collection="cities" index="index" open="(" separator="," close=")" item="city">
#{city}
</foreach>
</select>
if
// ognl对象图表达式取值 即 state=user.getState()
<select id="findActiveBlogLike" resultType="Blog">
SELECT * FROM BLOG
<where>
<if test="state != null">
state = #{state}
</if>
<if test="title != null">
AND title like #{title}
</if>
<if test="author != null and author.name != null">
AND author_name like #{author.name}
</if>
</where>
</select>
where 元素只会在至少有一个子元素的条件返回 SQL 子句的情况下才去插入“WHERE”子句。而且,若语句的开头为“AND”或“OR”,where 元素也会将它们去除。