hql - Hibernate query left outer join. -
select table1.name,table1.url,table1.address,table1.city,table1.state,table1.errormsg msg, sum(table2.id not null) qe,table4.tp pt table1 left outer join table2 on table2.table1id=table1.id left outer join table3 on table3 .id=table1.pdid left outer join table4 on table4.venueid=table3 .id table1.visible = 1 group table1.id order table1.name,table1.city,table1.state,qe,pt;
i new hql have converted based on objects clueless based on how frame left outer join in hql. tried using exception in thread "main" org.hibernate.hql.ast.querysyntaxexception:
sum aggregate function throws: exception in thread "main" org.hibernate.hql.ast.querysyntaxexception: expecting close, found 'is' near line 1, please
Comments
Post a Comment