Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Integration (Joins (Inner join (Row in the left table is combined…
Data Integration
Joins
Inner join
Row in the left table is combined horizontally with any row in the right table that has the same identity value
-
-
Outer join
Right outer join
Same as inner join but also adds any rows in left table that do not have corresponding rows in left table
Full outer join
-
Great for connecting different lists if there are overlaps
between rows and a shared identifier to allow for integration
Left outer join
Same as inner join but also adds any rows in left table that do not have corresponding rows in right table
-
-
-
-
-