Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如在 sql 查询中,它将:
delete from Mails where name='....'
如何通过 EntityManager 执行此操作?
您可以使用命名查询来执行此操作。 这是一个例子:
query = em.createNamedQuery("SELECT c FROM Country c"); List results = query.getResultList();
不要使用选择,而是使用您想要的方式删除。请注意,这不使用 SQL,而是JPQL。