Create the table and seed it
Goal
Create a Data Table with the fields email, name, status. Seed it with the 3 initial dataset records (by hand or by importing the CSV).
Done criteria
Data Tables are n8n's own built-in storage, no external database needed. Open the Data tables section of your instance and create one, then define the columns: email (String), name (String), status (String).
Seed the 3 starting rows by hand in that view, or add them from a workflow with a Data Table node set to the Insert operation. Either path leaves you with the same three rows.
Treat email as the key from the start: it is the field that identifies a person uniquely, and the next steps lean on it to find and update people.
From the n8n docs