vote up 1 vote down star

Hi,

i have three tables and 2 JPA model classes:

Unit
------------
id [PK]    - Integer
code       - String
unitGroups - List<UnitGroup>


UnitGroup
------------
id [PK]    - Integer
ugKey      - String
units      - List<Unit>

units and unitGroups have many-to-many relationship between themselves. briefly i want to write an HQL query to get the output of following sql:

SELECT u.* 
FROM units u, unit_groups ug, unit_group_pairs ugp 
WHERE ugp.UnitID = u.ID 
AND ugp.UnitGroupID = ug.ID 
AND ug.UGKey = 'amount' AND u.ID = 10
flag

0% accept rate

3 Answers

vote up 0 vote down

at last:

select u from Unit u left join u.unitGroups ug where u.id = 10 and ug.ugKey = 'amount'
link|flag
vote up 0 vote down

Try this

select u from  unit as u 
where u.ID = 10 and 
'amount' = any elements(u.unitGroups.UGKey)
link|flag
select u from Unit u where u.id = 10 and 'amount' = any elements(u.unitGroups.ugKey): org.hibernate.QueryException: illegal attempt to dereference collection [unit0_.ID.unitGroups] with element property reference [ugKey] – firatkucuk Nov 5 at 9:20
vote up 1 vote down

I hope this will work, but not sure. Please no negatives :). I haven't tried this out myself. Just come up with this, so it might help you. Cheers.

from Unit as units 
inner join fetch units.unitGroups grp
inner join fetch grp.units
where grp.ugKey = 'amount' and units.id = 10
link|flag
Thanks but i established the Many-to-many association. My question is about hql. – firatkucuk Nov 4 at 8:39
Modified. Sorry for the wrong assumption. – Vinegar Nov 4 at 11:07
i got this error; org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags – firatkucuk Nov 4 at 11:22
i found a solution like this: select (select u.id from Unit u where u.id = 10) from UnitGroup ug where ug.ugKey = 'amount' – firatkucuk Nov 4 at 11:51
i noticed it's not a solution :) it also works on not "amount" situations. – firatkucuk Nov 4 at 11:58

Your Answer

Get an OpenID
or

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