Questo contenuto non è disponibile nella lingua selezionata.

15.2. The from clause


The simplest possible Hibernate query is of the form:
from eg.Cat
Copy to Clipboard Toggle word wrap
This returns all instances of the class eg.Cat. You do not usually need to qualify the class name, since auto-import is the default. For example:
from Cat
Copy to Clipboard Toggle word wrap
In order to refer to the Cat in other parts of the query, you will need to assign an alias. For example:
from Cat as cat
Copy to Clipboard Toggle word wrap
This query assigns the alias cat to Cat instances, so you can use that alias later in the query. The as keyword is optional. You could also write:
from Cat cat
Copy to Clipboard Toggle word wrap
Multiple classes can appear, resulting in a cartesian product or "cross" join.
from Formula, Parameter
Copy to Clipboard Toggle word wrap
from Formula as form, Parameter as param
Copy to Clipboard Toggle word wrap
It is good practice to name query aliases using an initial lowercase as this is consistent with Java naming standards for local variables (e.g. domesticCat).
Torna in cima
Red Hat logoGithubredditYoutubeTwitter

Formazione

Prova, acquista e vendi

Community

Informazioni sulla documentazione di Red Hat

Aiutiamo gli utenti Red Hat a innovarsi e raggiungere i propri obiettivi con i nostri prodotti e servizi grazie a contenuti di cui possono fidarsi. Esplora i nostri ultimi aggiornamenti.

Rendiamo l’open source più inclusivo

Red Hat si impegna a sostituire il linguaggio problematico nel codice, nella documentazione e nelle proprietà web. Per maggiori dettagli, visita il Blog di Red Hat.

Informazioni su Red Hat

Forniamo soluzioni consolidate che rendono più semplice per le aziende lavorare su piattaforme e ambienti diversi, dal datacenter centrale all'edge della rete.

Theme

© 2025 Red Hat