Possible Duplicate:
Left join and Left outer join in SQL Server
Today my question is about the join operations in oracle,
I have two tables Table1
and Tabel2
Now I would like to perform join operations on them,
When I perform left outer join I get the result that is correct
and when I perform left join then I get the result that is correct
On both the operation I get the same result,
Now my question is that what is the difference between left outer join and left join.
Why oracle provided Left Outer Join when Left Join works the same way.