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.
mysql ではDELETE FROM table、TRUNCATE TABLE table
DELETE FROM table
TRUNCATE TABLE table
JPAのEntity.deleteAll()実行は削除されると思います。代わりに切り捨てる正しい方法は何ですか?
Entity.deleteAll()
TRUNCATE TABLE tableは標準 SQL ではないため、通常はサポートされていません。これを行うには、クエリを直接実行します。
em().createNativeQuery("truncate table MyTable").executeUpdate();
EntityManagerPlay Model クラス ( withにアクセスできる場所) にいる間em()。
EntityManager
em()