Please enable JavaScript.
Coggle requires JavaScript to display documents.
Ch. 9 Data Integration (Join (Types of Joins (Inner Join :star: (Creates a…
Ch. 9 Data Integration
-
Join
-
Types of Joins
Inner Join :star:
Creates a table within in the two tables. NO Null values, only values found in both tables are shown in Inner Join
Overall: gives us the most accurate//complete information,
complete info meaning- occurrences that happened on both tables
Outer Join
Left/Right Join :star:
Left Join: Left table is the primary table. Which means the Left table values can not be null. The Right table values only fill the Left table values and fill Null IF Left table values not found on Right table
ex: 2 Tables - Cust and Invoice
Cust has - ID 1 and 2
Invoice has - Cust 1 and 3
Left Join will show:
ID 1 and 2 and Invoice 1 but Invoice for
ID 2 will be Null
Overall: Gives us max info the for Base table (Cust above), max info meaning- all occurrences possible of base table keys
-
-