이 콘텐츠는 선택한 언어로 제공되지 않습니다.

14.10. The Where Clause


The where clause allows you to refine the list of instances returned. If no alias exists, you can refer to properties by name:
from Cat where name='Fritz'
Copy to Clipboard Toggle word wrap
If there is an alias, use a qualified property name:
from Cat as cat where cat.name='Fritz'
Copy to Clipboard Toggle word wrap
This returns instances of Cat named 'Fritz'.
The following query:
select foo
from Foo foo, Bar bar
where foo.startDate = bar.date
Copy to Clipboard Toggle word wrap
returns all instances of Foo with an instance of bar with a date property equal to the startDate property of the Foo. Compound path expressions make the where clause extremely powerful. Consider the following:
from Cat cat where cat.mate.name is not null
Copy to Clipboard Toggle word wrap
This query translates to an SQL query with a table (inner) join. For example:
from Foo foo
where foo.bar.baz.customer.address.city is not null
Copy to Clipboard Toggle word wrap
would result in a query that would require four table joins in SQL.
The = operator can be used to compare not only properties, but also instances:
from Cat cat, Cat rival where cat.mate = rival.mate
Copy to Clipboard Toggle word wrap
select cat, mate
from Cat cat, Cat mate
where cat.mate = mate
Copy to Clipboard Toggle word wrap
The special property (lowercase) id can be used to reference the unique identifier of an object.
from Cat as cat where cat.id = 123

from Cat as cat where cat.mate.id = 69
Copy to Clipboard Toggle word wrap
The second query is efficient and does not require a table join.
Properties of composite identifiers can also be used. Consider the following example where Person has composite identifiers consisting of country and medicareNumber:
from bank.Person person
where person.id.country = 'AU'
    and person.id.medicareNumber = 123456
Copy to Clipboard Toggle word wrap
from bank.Account account
where account.owner.id.country = 'AU'
    and account.owner.id.medicareNumber = 123456
Copy to Clipboard Toggle word wrap
Once again, the second query does not require a table join.
Refer to the "Referring to Identifier Property" section for more information regarding referencing identifier properties)
The special property class accesses the discriminator value of an instance in the case of polymorphic persistence. A Java class name embedded in the where clause will be translated to its discriminator value.
from Cat cat where cat.class = DomesticCat
Copy to Clipboard Toggle word wrap
You can also use components or composite user types, or properties of said component types.
An "any" type has the special properties id and class that allows you to express a join in the following way (where AuditLog.item is a property mapped with <any>):
from AuditLog log, Payment payment
where log.item.class = 'Payment' and log.item.id = payment.id
Copy to Clipboard Toggle word wrap
The log.item.class and payment.class would refer to the values of completely different database columns in the above query.
맨 위로 이동
Red Hat logoGithubredditYoutubeTwitter

자세한 정보

평가판, 구매 및 판매

커뮤니티

Red Hat 문서 정보

Red Hat을 사용하는 고객은 신뢰할 수 있는 콘텐츠가 포함된 제품과 서비스를 통해 혁신하고 목표를 달성할 수 있습니다. 최신 업데이트를 확인하세요.

보다 포괄적 수용을 위한 오픈 소스 용어 교체

Red Hat은 코드, 문서, 웹 속성에서 문제가 있는 언어를 교체하기 위해 최선을 다하고 있습니다. 자세한 내용은 다음을 참조하세요.Red Hat 블로그.

Red Hat 소개

Red Hat은 기업이 핵심 데이터 센터에서 네트워크 에지에 이르기까지 플랫폼과 환경 전반에서 더 쉽게 작업할 수 있도록 강화된 솔루션을 제공합니다.

Theme

© 2025 Red Hat