2011-09-21 48 views

回答

2
String hqlInsert = "insert into DelinquentAccount (id, name) select c.id, c.name from Customer c where ..."; 
int createdEntities = s.createQuery(hqlInsert).executeUpdate(); 

在這裏看到更多的信息 http://docs.jboss.org/hibernate/core/3.3/reference/en/html/batch.html#batch-direct

+0

謝謝詹姆斯DW,但這是HQL,我需要JPQL ... – Zeemee

+0

如果您在使用Hibernate,那麼你可以使用HQL。可能沒有JPA等價物。 –

+0

好的,我發現它的作品...太棒了! – Zeemee

相關問題