批量删除
delete from t_user where u_id in(
<foreach collection="ids" item="id" separator=",">
#{id}
</foreach>
)
</delete>
item表示集合中每一个元素进行迭代时的别名.
index指 定一个名字,用于表示在迭代过程中,每次迭代到的位置.
open表示该语句以什么开始,
separator表示在每次进行迭代之间以什么符号作为分隔 符.
close表示以什么结束.
当查询条件需要动态生成时,需要使用动态SQL
<select id="dynaFindUser" resultMap="user">
select * from t_user where 1=1
<if test="id != 0">
and u_id > #{id}
</if>
<if test="userName != null and userName != ''">
and u_userName like '%${userName}%'
</if>
</select>
List list = session.selectList("dynaFindUser",new UserBean(0,"张"));