
|
If you were logged in you would be able to see more operations.
|
|
|
|
JDOQL queries such as
SELECT FROM Office WHERE dept.name.equals("Finance") && departments.contains(dept)
are performing contains(ObjectExpression) which leads to "and" conditions in the SQL such as
THIS_DEPARTMENTS.DEPARTMENT_ID_EID = THIS_DEPARTMENTS.DEPARTMENT_ID_EID
This only occurs for the cases not using EXISTS
|
|
Description
|
JDOQL queries such as
SELECT FROM Office WHERE dept.name.equals("Finance") && departments.contains(dept)
are performing contains(ObjectExpression) which leads to "and" conditions in the SQL such as
THIS_DEPARTMENTS.DEPARTMENT_ID_EID = THIS_DEPARTMENTS.DEPARTMENT_ID_EID
This only occurs for the cases not using EXISTS |
Show » |
Sort Order:
|