Allow joins with subselects in the FROM clause
----------------------------------------------

                 Key: TORQUE-187
                 URL: https://issues.apache.org/jira/browse/TORQUE-187
             Project: Torque
          Issue Type: New Feature
          Components: Runtime
    Affects Versions: 4.0
            Reporter: Thomas Vandahl


It shall be possible to execute statements like

{code:sql}
SELECT * FROM table1, (SELECT * FROM table2 WHERE xxx) t2 WHERE table1.id = 
t2.id
{code}

(I know this example can be rewritten as a simple join, the actual use case is 
more complicated)

In the case of the Criteria object, this would suggest a call sequence like 

{code}
criteria.addAlias("t2", subCriteria);
criteria.addJoin("t2.id", Table1Peer.ID);
{code}



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to