Jakarta Persistence Query Language: Difference between revisions

Content deleted Content added
Luckas-bot (talk | contribs)
m r2.7.1) (robot Adding: hu:Java Persistence Query Language
No edit summary
Line 25:
JPQL is used to make queries against entities stored in a relational database. It is heavily inspired by [[SQL]], and its queries resemble SQL queries in syntax, but operate against JPA entity objects rather than directly with database tables.
 
In addition to retrieving objects (<code>SELECT</code> queries), JPQL supports bulkset based <code>UPDATE</code> and <code>DELETE</code> queries.
 
==Examples==