このコンテンツは選択した言語では利用できません。

14.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).
トップに戻る
Red Hat logoGithubredditYoutubeTwitter

詳細情報

試用、購入および販売

コミュニティー

Red Hat ドキュメントについて

Red Hat をお使いのお客様が、信頼できるコンテンツが含まれている製品やサービスを活用することで、イノベーションを行い、目標を達成できるようにします。 最新の更新を見る.

多様性を受け入れるオープンソースの強化

Red Hat では、コード、ドキュメント、Web プロパティーにおける配慮に欠ける用語の置き換えに取り組んでいます。このような変更は、段階的に実施される予定です。詳細情報: Red Hat ブログ.

会社概要

Red Hat は、企業がコアとなるデータセンターからネットワークエッジに至るまで、各種プラットフォームや環境全体で作業を簡素化できるように、強化されたソリューションを提供しています。

Theme

© 2025 Red Hat