set标签
可以去掉语句最后的那个逗号
<update id="updateCustomer">
update `customer`
<set>
cust_name=#{cust_name},cust_profession=#{cust_profession},
</set>
where cust_id=#{cust_id}
</update>
foreach标签
做范围查询的时候,可以将传进来的范围值通过foreach标签 进行遍历
支持三种类型的传入
- list
- 对象属性
- 数组
<select id="getCustomers" parameterType="integer[]" resultType="com.ctbu.domain.Customer">
select * from `customer` where cust_id in
<foreach collection="array" open="(" close=")" separator="," item="ids">
#{ids}
</foreach>
</select>