5
I was looking at some examples of SQL in Oracle, and I noticed that it is possible to do only JOIN
.
Example
SELECT
T1.*,
T2.desc
FROM
table1 T1
JOIN table2 T2 ON T2.id = T1.id_table2
Question
- What is the difference of that operator?
- What is the relationship with
LEFT
,RIGHT
? Or he’s the same as oneFULL
?
Addendum
Related question : What is the difference between INNER JOIN and OUTER JOIN?
The
JOIN
is just an abbreviation ofINNER JOIN
– Jeferson Almeida
Nothing wrong with your question, just an observation: New JOIN operator? That I know of
JOIN
without complement is not so new, already exists to a bOOOm time :P– MarceloBoni