select b.id as b_id, b.name as b_name, b.totnum as b_totnum, b.nownum as b_totnum, b.flag as b_flag , bb.starttime as bb_starttime, bb.deadtime as bb_deadtime, st.id as st_id, st.name as st_name, st.password as st_password, st.booknum as st_booknum from book b, borrowedbook bb, student st where bb.idbook=b.id and bb.idstud=st.id
select b.id as b_id, b.name as b_name, b.totnum as b_totnum, b.nownum as b_totnum, b.flag as b_flag, bb.starttime as bb_starttime, bb.deadtime as bb_deadtime, st.id as st_id, st.name as st_name, st.password as st_password, st.booknum as st_booknum from book b, borrowedbook bb, student st where bb.idbook = b.id and bb.idstud = st.id
</resultMap> <!--book.id => idbook,idstud,starttime,deadtime => book and student --> <selectid="selectByBookId"resultMap="MyBorrowedBook"> select * from borrowedbook where idbook = #{id}
<selectid="selectDynamic"resultType="entity.Book"> select * from book where <iftest="id!=null and id!=''"> id=#{id} </if> <iftest="name!=null"> and name like #{name} </if> </select>
<selectid="selectDynamic"resultType="entity.Book"> select * from book <where> <iftest="id!=null and id!=''"> id=#{id} </if> <iftest="name!=null"> and name like #{name} </if> <iftest="totnum!=null"> and tounum=#{totnum} </if> </where> </select>
set标签用于处理set语句时,多余的,:
1 2 3 4 5 6 7 8 9 10 11
<updateid="updateDynamic"parameterType="entity.Book"> update book <set> <iftest="name!=null and name!=''">name=#{name}</if> <iftest="totnum!= null">totnum=#{totnum}</if> <iftest="nownum!=null">nownum=#{nownum}</if> </set> <where> id=#{id} </where> </update>
<selectid="selectDynamic"resultType="entity.Book"> <!--bind用于绑定参数--> <bindname="name"value="'%'+_parameter.name+'%'"/> select * from book <trimprefix="where"prefixOverrides="and"> <iftest="id!=null and id!=''"> id=#{id} </if> <iftest="name!=null"> and name like #{name} </if> <iftest="totnum!=null"> and tounum=#{totnum} </if> <iftest="nownum!=null"> and nownum=#{nownum} </if> <iftest="flag!=null"> and flag=#{flag} </if> </trim> </select>
<selectid="selectDynamic"resultType="entity.Book"> <iftest="_parameter.name!=null and _parameter !=''"> <bindname="name"value="'%'+_parameter.name+'%'"/> </if> select * from book <trimprefix="where"prefixOverrides="and"> <choose> <whentest="id!=null and id!=''"> id=#{id} </when> <whentest="name!=null"> and name like #{name} </when> <otherwise> 1=1 </otherwise> </choose> </trim> </select>
foreach
foreach用于遍历集合中的元素。 一种情景:需要查找id在在一个list中的元素。
1 2 3 4 5 6
<selectid="selectIn"resultType="entity.Book"> select * from book where id in <foreachcollection="idList"item="id"open="("close=")"separator=","> #{id} </foreach> </select>