I was looking at some examples of SQL in Oracle, and I noticed that it's only possible to do JOIN
.
Example
SELECT
T1.*,
T2.desc
FROM
table1 T1
JOIN table2 T2 ON T2.id = T1.id_table2
Question
- What is the difference of this operator?
- What is the relationship with
LEFT
,RIGHT
? Or is it the same asFULL
?
Addendum
Related question: What's the difference between INNER JOIN and OUTER JOIN?