摘要: 1、根据一张表更新另一张表的数据 update t_table t1 set a = t2.a, b = t2.b from t_table t2 where t1.name=t2.name 2、批量更新 mybatis批量更新 <update id="updateBatch" parameterT 阅读全文
posted @ 2020-08-01 14:48 一个坚果 阅读(220) 评论(0) 推荐(0) 编辑