Data Preparation
Multi table data is present in multiple tables that each have rows and columns. The tables are connected to each other through foreign and primary key references.

Before you begin creating synthetic data, it's important to have your data ready in the right format:
Data, a dictionary that maps every table name to a pandas DataFrame object containing the actual data
Metadata, a Metadata object that describes your table. It includes the data types in each column, keys and the connections between tables.
Learn More
Multi Table Schemas
Last updated