I ask in this topic because my question is rather similar.
gavin wrote:
Code:
from Cat older, Cat younger where older.age - younger.age > 2
Doing like this i have inner join, and when there is no local translations i get 0 rows.
Code:
"select base, local from Translation base, Translation local
where base.lang = :baseLang
and local.lang = :localLang
and base.entry = local.entry"
i need smth like:
Code:
select base, local from Translation base left outer join Translation local
but I get exception: outer or full join must be followed by path expression
So, how can I implement self left join?
Thanks.