Concept Flow - Joining more than two tables
Start with Table1
Join Table2 on matching key
Result: Combined Table1+Table2
Join Table3 on matching key
Final Result: Combined Table1+Table2+Table3
Start by joining the first two tables on a common column, then join the third table to the result using another matching column.