Hi
I have a query that looks like this

SELECT A.ID FROM
TABLE A A, TABLE B
WHERE (A.col_1 = some_value) AND
(
  (A.col_2 = B.col_2) AND
  (
    (B.id = another_value)
  )
)

I'm having trouble representing this using Criteria objects. Does anyone
know if this is possible, if so could you point me in the right direction?

Thanks
George Papastamatopoulos

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to