Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
v3.0.5
Name and version of the database you are using:
DB2
Sorry in advance for any lack of detail, but I am trying to help a friend. He is wondering if it was possible to run a query with multiple outer left joins. A SQL query that would look something like this.
SELECT * FROM parent
left outer join child1 on key = key
left outer join child2 on key = key
left outer join child3 on key = key
WHERE parent.name like 'JI%'
His mapping file has multiple one-to-many mappings as Sets.
The documentation says one one collection role can be fetched in a query, however there are examples of multiple joins (although none with more than one left join).