批量更新的时候不能用子查询 where shop_orderform_id in( select shop_orderform_id from `shop_orderform` where user_name=xxxxx ) 执行时间如下 即使没有任何更新 也是巨慢 用多表关联更新 ,o.get_time='xxxx' where user_name=xxxxxx and s.shop_orderform_id=o.shop_orderform_id 执行时间如下 没有更新时候的速度…
需求:使用批量插入后,需要insert之后的每一条记录的ID 注意:Mybatis3.3.1的版本以后支持批量插入后返回主键ID 示例: domin.java: public class User { private int d; private String name; private String pwd; public long getId() { return id; } public void setId(long id) { this.id = id; } public String…