7.4. The select clause


The select clause picks which objects and properties to return in the query result set. Consider:
Copy to Clipboard Toggle word wrap
select mate 
from Cat as cat 
    inner join cat.mate as mate
The query will select mates of other Cats. Actually, you may express this query more compactly as:
Copy to Clipboard Toggle word wrap
select cat.mate from Cat cat
Queries may return properties of any value type including properties of component type:
Copy to Clipboard Toggle word wrap
select cat.name from DomesticCat cat
where cat.name like 'fri%'
Copy to Clipboard Toggle word wrap
select cust.name.firstName from Customer as cust
Queries may return multiple objects and/or properties as an array of type Object[],
Copy to Clipboard Toggle word wrap
select mother, offspr, mate.name 
from DomesticCat as mother
    inner join mother.mate as mate
    left outer join mother.kittens as offspr
or as a List (HQL specific feature)
Copy to Clipboard Toggle word wrap
select new list(mother, offspr, mate.name)
from DomesticCat as mother
    inner join mother.mate as mate
    left outer join mother.kittens as offspr
or as an actual typesafe Java object,
Copy to Clipboard Toggle word wrap
select new Family(mother, mate, offspr)
from DomesticCat as mother
    join mother.mate as mate
    left join mother.kittens as offspr
assuming that the class Family has an appropriate constructor.
You may assign aliases to selected expressions using as:
Copy to Clipboard Toggle word wrap
select max(bodyWeight) as max, min(bodyWeight) as min, count(*) as n
from Cat cat
This is most useful when used together with select new map (HQL specific feature):
Copy to Clipboard Toggle word wrap
select new map( max(bodyWeight) as max, min(bodyWeight) as min, count(*) as n )
from Cat cat
This query returns a Map from aliases to selected values.
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, Inc.