java框架hibernate批量删除数据的时候,用什么方法效率比较高?
1个回答
推荐于2018-04-13
展开全部
你可以试一下将ID放到list中,hibernate可以传入list的参数,如:
String hql = "delete bean where id in (:idList)";
Query query = this.getSession().createQuery(hql);
query.serParameterList("idList",idList);//第二个参数idList为传入参数,idList中的值的类型与DB中ID类型一致
query.executeUpdate();
String hql = "delete bean where id in (:idList)";
Query query = this.getSession().createQuery(hql);
query.serParameterList("idList",idList);//第二个参数idList为传入参数,idList中的值的类型与DB中ID类型一致
query.executeUpdate();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询