I have a simple class, called Person, as follows:

public class Person {
    private Integer id;
    private String name;
    private List<PersonState> states;
    ...
}

And each PersonState is defined like:

public class PersonState {
    private Integer id;
    private State state;
    private Date date;
    ...
}

And State is a simple class, containing only an id and name, and I have all the mapping files configured and working.

I want to get those Persons whose last PersonState (based on it's date) has an State with id = 5 (for instance), so what would be the HQL query like? Thanks!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Something like this:

SELECT p FROM Person p JOIN p.states ps1 
WHERE 
    ps1.date = (SELECT MAX(ps2.date) FROM PersonState ps2 WHERE ps2 MEMBER OF p.states)
    AND ps1.state.id = ?
link|improve this answer
Yeah! That's what I meant! – Joaquín L. Robles Jan 30 '11 at 21:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.