Search

14.2. The from clause

download PDF
The simplest possible Hibernate query is of the form:
from eg.Cat
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
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
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
Multiple classes can appear, resulting in a cartesian product or "cross" join.
from Formula, Parameter
from Formula as form, Parameter as param
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).
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.

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.

© 2024 Red Hat, Inc.