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を使用することに注意してください。