Concept Flow - merge() for SQL-like joins
Start with two DataFrames
Choose join keys
Select join type: inner, left, right, outer
Match rows based on keys
Combine matched rows
Result: merged DataFrame
The merge() function takes two tables, matches rows by keys, and combines them based on the join type.