mysql的foreach使用

1.  对于 需要 使用mybatis的foreach功能生成的 批量操作语句

比如:   select * from  user  n where ( ? in n.tags , ? in n.tags   ) 

    分解 在mybatis的xml文件就是

       

2.扩展中: collection: 

    1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list

 

    2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array


    3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可

   

  

  

 3. 

sql语句是这样:

                                  select * from t_news n where ? in n.tags or ? in n.tags

分解就是:



4.

   语句:select * from t_news n where n.tags like ? or n.tags like ?  

  分解是:

       






你可能感兴趣的:(mysql的foreach使用)