Combine two CSV files by appending rows, unioning columns, or joining on a key.
The frame below runs the same code as this page, in the reader's own browser. Nothing is sent to us, and nothing is sent to you.
Pick a dark background and the text and panels follow it, so the frame stays readable on a dark page.
The inputs are parsed, then append, union, or key-based join determines the row and column shape. Optional whole-row deduplication runs after the merge and the result is serialized with the chosen delimiter.
Input1: id,name,email 1,Alice,[email protected] 2,Bob,[email protected] Input2: id,name,email 3,Carol,[email protected] 4,Dave,[email protected]
id,name,email 1,Alice,[email protected] 2,Bob,[email protected] 3,Carol,[email protected] 4,Dave,[email protected]
Monthly exports append, unlike schemas union, and catalogue data joins inventory on SKU.