- You have two CSV files available to create your database with
100 000entries. - Two SQL tables
usersandaddresses.
- Sqlite3 database
`users` table schema:
id int,
firstName string,
lastName string,
gender string,
email string,
age int,
eyeColor string,
phone string,
registered string
`addresses` table schema:
id int,
streetNumber int,
street string,
postalCode int,
city string,
userId Foreign key users.id