-----------傳入數組------返回list<string>---------- String[] sendPersonIdArr = sendPersonId.split(","); List<String> list = staffInfoService.ListPhonesByIds(sendPersonIdArr); <!-- 通過userIds查詢員工的電話--> <select id="ListPhonesByIds" parameterType="String" resultType="String"> SELECT h.telphone from hr_staff_info h left JOIN sys_user u on h.STAFFINFO_ID=u.STAFF_ID where u.id in <foreach collection="array" index="index" item="item" open="(" separator="," close=")"> #{item} </foreach> </select> -----傳入List<string>----返回List<User>------ public List<User> findByUserIdList(List<String> userlist) throws Exception { return (List<User>) dao.findForList("UserMapper.findByUserIdList", userlist); } <!-- 通過userId的list來查詢userlist --> <select id="findByUserIdList" parameterType="java.util.List" resultMap="userResultMap" > select * from sys_user where id in <foreach collection="list" item="item" index="index" open="(" separator="," close=")"> #{item} </foreach> </select>
-----------傳入一個map---------批量修改數據--------------- controller中: Map<String, Object> map = new HashMap<>(); map.put("notifyNum", notifyNum); map.put("userIdArr", userIdArr); userService.sendNotify(map); sql中: <!--發送通知,保存notifyNum 到user表中的notifyCodes中--> <update id="sendNotify" parameterType="java.util.Map" > update user set notify_codes=if(notify_codes is null or notify_codes='',#{notifyNum},CONCAT(notify_codes,',',#{notifyNum})) where id in <foreach collection="userIdArr" index="index" item="item" open="(" separator="," close=")"> #{item} </foreach> </update> 總結: ①這里傳入了一個String notifyNum和一個String[] userIdArr ,我們只要在sql中名稱匹配就可以了。 ②批量修改也可以用in ③在修改的時候,我們可以在原來的字段值中直接后面追加字符串。當原來的值為數字的時候,我們可以 update user set notify_codes=notify_codes+'2' where id='24' 這樣,假設原來為5,那么現在就為 7 了。 當原來的值是一個String類型時,我們可以用 CONCAT(notify_codes,',',#{notifyNum}) 來在后面追加 。比如原來為 "12" 現在最加一個 ",13" 那么結果為 "12,13" ④判斷一個字段是否為空的時候,用這樣用 if(notify_codes is null or notify_codes='','為空或空字符串返回這個值','非空的時候返回這個值')
第二種方式:整條語句循環 (自己未驗證)
創新互聯主營宣恩網站建設的網絡公司,主營網站建設方案,重慶App定制開發,宣恩h5小程序開發搭建,宣恩網站營銷推廣歡迎宣恩等地區企業咨詢
<update id="batchUpdate" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="" close="" separator=";"> update test <set> test=${item.test}+1 </set> where id = ${item.id} </foreach> </update>
sql中我們可以傳入一個list或者一個數組,返回一個list。
這里用到了sql中的 In,用到了sql中的遍歷。
在我們要向mapper.xml中傳遞String參數的時候,需要sql中設置
parameterType="String"
同時 要保證impl中的參數名和sql中的名字要一致。
如下:
@Override public User findByUE(String userId)throws Exception{ return (User)dao.findForObject("UserMapper.findById",userId); } sql : u.id = #{userId}
網站題目:sql中傳入一個list,返回一個list
網站地址:http://vcdvsql.cn/article20/pphjjo.html
成都網站建設公司_創新互聯,為您提供網站改版、App開發、網站設計公司、定制網站、自適應網站、建站公司
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯