`
zysnba
  • 浏览: 187100 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

mybitse 批量更新

 
阅读更多
  <update id="updateSortbyid" parameterType="java.util.List">
    update 表
    set  sort=
    <foreach collection="list" item="item" index="index"
        separator=" " open="case id" close="end">
        when #{item.id} then #{item.sort}
    </foreach>
    where id in
    <foreach collection="list" index="index" item="item"
        separator="," open="(" close=")">
        #{item.id}
    </foreach>
</update>




   /**
* @param list
* @return
*/
Integer updateSortbyid(@Param("list") List<Course> list);
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics