vote up 0 vote down star

How to convert this query into HQL?

select a.* from dbo.BFProdAttrAssociation a

join

(

select productId

from

dbo.BFProdAttrAssociation where attributeId =7 and [Value]='Hindi'

) b on a.productid=b.productid

where a.attributeId=10 and a.[Value]='Romance'

Please help me..

Table BFProdAttrAssociation

id int;

productid int;

attributeid int;

value varchar(max);

where productid is linked to bfproduct and attributeid is linked to bfattribute

flag

how have you mapped that table to hibernate? iow, how does the java class for BFProdAttrAssociated look? – Michael Wiles Jul 9 at 13:44

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.