1. Does between in HQL compare strictly or not? stackoverflow.comif I write in HQL
is that equivalent to
or
or some other of the 4 combinations?
... |
2. How to compare a set in hql to a new user set forum.hibernate.orgHello all I try and try and did not succeed my self - so I need yours help. I have 2 hibernate classes: Event { int id; int event_type; Set |
3. HQL Question doing a NOT IN comparing a VARCHAR and BIGI forum.hibernate.orgI need to do the following SQL in HQL: select * from item i where BIGINT(i.acct) NOT IN (select accountnumber from DACS_INDICATOR_TABLE) acct = VARCHAR accountnumber = BIGINT HQL = from ItemVO as item where item.acct not in (select dacs.acctNumber from DACSIndicatorTableVO as dacs) but this gives an error SEVERE: The data types of the operands for the operation "IN" are ... |