Hibernate - (HQL and JPQL) Delete statements
Delete statements
DELETE statements is the same in HQL and JPQL:delete_statement ::=
delete_clause [where_clause]
delete_clause ::=
DELETE FROM entity_name [[AS] identification_variable]
A DELETE statement is also executed using the executeUpdate() method of either org.hibernate.query.Query or javax.persistence.Query.
Comments
Post a Comment