What does (+) mean in SQL. I have an idea that it denotes outer join. But I came across a query which is as following:
select t1.a1, t2.a2
from t1,t2
where t1.b1 = t2.b2(+)
and t2.c3(+) = 'some_string'
I am more confused about the fourth line of code where the (+) equals some string. What does that denote?
Oracle: What does `(+)` do in a WHERE clause? -> I went through this question but it does not explain my main concern as to what exactly does t2.c3(+) = 'some_string' mean.