1.数字字符串以逗号分割,转成整形数组
String ids = "1,2,3,4,5"; List<Integer> idList = Arrays.stream(ids.split(",")).map(Integer::parseInt).collect(Collectors.toList());
2.mysql的find_in_set()函数的使用
select id, list, name from table where find_in_set('daodao',list);
list不是常量时,IN只进行匹配第一个
list是常量,则可以直接用IN, 否则要用find_in_set()函数。
标签:常用,set,常量,list,ids,find,函数 From: https://www.cnblogs.com/jiutang001/p/16648291.html