-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: HQL versus SQL
PostPosted: Wed May 19, 2004 10:00 am 
Regular
Regular

Joined: Fri Nov 21, 2003 10:23 am
Posts: 81
How to create appropriate HQL from SQL:

SQL (working):
Code:
select iire.instrumentId, iire.basePoint
, (select max(ih.value) from instrument_history_tbl ih where ih.instrumentId = iire.interestRateId) as value
from instrument_interestr_entry_tbl iire
where iire.instrumentId=758


HQL (not working):
Code:
select iire.instrumentId, iire.basePoint
, (select max(ih.value) from InstrumentHistory ih where ih.instrumentId = iire.interestRateId) as value
from InstrumentInterestRateEntry iire
where iire.instrumentId=758


HQL raises exception:
1 errors occurred while listing (and calling getPathNames).
net.sf.hibernate.QueryException: aggregate function expected before ( in SELECT [select iire.instrumentId, iire.basePoint
, (select max(ih.value) from com.pxpfs.excom2.finance.domainmodel.InstrumentHistory ih where ih.instrumentId = iire.interestRateId) as value
from com.pxpfs.excom2.finance.domainmodel.InstrumentInterestRateEntry iire
where iire.instrumentId=758
]


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 19, 2004 10:39 am 
Hibernate Team
Hibernate Team

Joined: Tue Sep 09, 2003 2:10 pm
Posts: 3246
Location: Passau, Germany
You can not use select-clause subselects in HQL.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.