14.3. 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).
Back to top
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2025 Red Hat