JDOQL : Enhance the JDOQL with JOIN and ALIAS features
-------------------------------------------------------
Key: JDO-637
URL: https://issues.apache.org/jira/browse/JDO-637
Project: JDO
Issue Type: New Feature
Components: api2
Reporter: Eric SULTAN
JOIN examples :
SELECT this.x, this,y, this.b.z FROM package.A JOIN this.b
SELECT this.x, this,y, this.b.z FROM package.A LEFT OUTER JOIN this.b
ALIAS examples :
SELECT alias1.x, alias1.y, alias1.b.z FROM package.A alias1 WHERE alias1.number
> 10
JOIN and ALIAS examples :
SELECT alias1.x, alias1.y, alias1.b.z FROM package.A alias1 LEFT OUTER JOIN
alias1.b WHERE alias1.number > 10
SELECT alias1.x, alias1.y, alias2.z FROM package.A alias1 LEFT OUTER JOIN
alias1.b alias2 WHERE alias1.number > 10
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.