myBatis通過逗號分隔字串,foreach
阿新 • • 發佈:2020-11-13
前言
當資料庫裡儲存的值是以逗號分隔格式儲存的字串時。
資料格式如下:
id | name | ids |
---|---|---|
1 | 張三 | a,b,c |
2 | 李四 | c,d,e |
我們拿到的條件引數是:b,e
1.後臺通過逗號分隔陣列,生成查詢語句
select * from table where ids in (’b’,’e’)
2.通過myBatis自帶功能foreach,直接把逗號分隔的字串傳到mapper.xml即可,後臺不用過多操作。
<select id="getSimilarity" parameterType="java.util.HashMap" resultType="java.util.HashMap"> select * from table where ids in <foreach item="item" index="index" collection="ids.split(’,’)" open="(" separator="," close=")"> #{item} </foreach> </select>
注:ids就是傳入的引數名稱,如果報錯請檢查引數名稱是否正確,引數是否有值。
後臺程式碼(我這裡有需要其他引數,所以用的map舉例):
Map<String, Object> map = new HashMap<String, Object>(); map.put("ids", "b,e"); List<Map<String, Object>> list = tableService.getSimilarity(map);
控制檯列印SQL:
Preparing: select * from table where ids in ( ? , ? ) Parameters: b(String), e(String)