Mybatis批量更新多个字段

        update base_sku

       

           

               

                   

                        when id=#{item.id} then #{item.status}

                   

                   

                        when id=#{item.id} then base_sku.status//原数据

                   

               

           

       

       

           

                

                    

                         when id=#{item.id} then #{item.price}

                    

                

           

       

        where id in

       

            #{item.id}

       

   

详情参考:https://www.cnblogs.com/ifindu-san/p/7879162.html

你可能感兴趣的:(Mybatis批量更新多个字段)