You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, NQuery does not support subqueries in an ON clause of a join if the join type is FULLOUTER (throws InternalError). For example, the following query cannot be executed:
SELECT*FROM Territories t
FULL JOIN EmployeeTerritories et ONet.TerritoryID=t.TerritoryIDAND
EXISTS (
SELECT*FROM Territories it
WHEREit.TerritoryId=et.TerritoryId
)
The text was updated successfully, but these errors were encountered:
Ported from CodePlex
Currently, NQuery does not support subqueries in an
ON
clause of a join if the join type isFULL
OUTER
(throwsInternalError
). For example, the following query cannot be executed:The text was updated successfully, but these errors were encountered: