Reputation: 3362
Let's say I have this:
<entity name = "account">
...
...
<link-entity name="opportunity" from ="accountid" to ="accountid" link-type="outer">
How do I know if this is a left outer join
, a right outer join
, or a full outer join
?
Upvotes: 0
Views: 118
Reputation: 22836
It is left outer join
. Reference
And right outer join
is not supported. Reference
Same applies to full outer join
. Community discussion
Upvotes: 1