vote up 0 vote down star
1

Hi there,

Here is something I'm trying to achieve using Apache Torque (3.3): Table 1: id f_id start_position end_position

Table 2: id f_id start end

I need to do: select * from table1 inner join table2 on table1.f_id = table2.f_id and ( (table1.start_position <= table2.start and table1.end_position >= table2.end) or (table1.start_position >= table2.start and table1.end_position <= table2.end) )

Is there a way to write this query up using Torque Criteria?

Thanks in advance!

David

flag

50% accept rate
OK, I can answer my own question: Criteria.Criterion rangeIn1 = criteria.getNewCriterion(Table1Peer.START_POSITION, (Object) Table1Peer.START_POSITION + " <= " + Table2Peer.START, Criteria.CUSTOM); Criteria.Criterion rangeIn2 = criteria.getNewCriterion(Table1Peer.END_POSITION, (Object) Table1Peer.END_POSITION + " >= " + Table2Peer.END, Criteria.CUSTOM); Criteria.Criterion rangeIn = rangeIn1.and(rangeIn2); – David Zhao Oct 27 at 21:55

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.