<select id="count" resultType="">
select count(*) from user where id in
<foreach collection="list" item="item" index="index"open="(" separator="," close=")">
#{item}</foreach></select>
1
2
3
4
5
6
如果参数类型为数组,则该值为 array
<select id="count" resultType="">
select * from user where id inarray
<foreach collection="array" item="item" index="index"open="(" separator="," close=")">
#{item}</foreach></select>
1
2
3
4
5
6
如果参数类型为 Map,则参数类型为 Map 的 Key
六、choose: 我选择了你,你选择了我!
<select id="count" resultType="Blog">
select count(*) from user
<choose><when test="id != null">
and id = #{id}</when><when test="username != null">
and username = #{username}</when><otherwise>
and age =18</otherwise></choose></select>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
当 id 和 username 都不为空的时候, 那么选择二选一(前者优先)
如果都为空,那么就选择 otherwise 中的
如果 id 和 username 只有一个不为空,那么就选择不为空的那个
七、sql:相当于 Java 中的代码提重,需要配合 include 使用
<sql id="table"> user </sql>
1
八、include:相当于 Java 中的方法调用
<select id="count" resultType="">
select count(*) from <include refid=“table(sql 标签中的 id 值)” /></select>
1
2
3
九、bind:对数据进行再加工
<select id="count" resultType="">
select count(*) from user
<where><if test="name != null"><bind name="name" value="'%' + username + '%'"
name = #{name}</if></select>