These are sample database tables we want transfer our data into. We have chosen our fieldnames which are in the tables
The way the tables have been designed could:
- Help answer queries and make it straightforward as possible
- Solve problems within the data
- Remove and transform data
- Help identify trends and insights
| -----------------| ---------------|
| transaction_ID | product_ID |
| INT | INT |
| | |
| -----------| ----------- | ------------- | | product_ID | product_name | product_price | | INT | VARCHAR | FLOAT | | | | |
| -----------| -----------------|
| branch_ID | branch_location |
| INT | VARCHAR |
| | |
| ---------------- | ------------| -----------------------| | transaction_ID | date_time | branch_ID | | INT | VARCHAR | INT(FK to branch_ID) | | | | |