Welcome to your first major SQL data analysis assignment! This week, we move beyond single tables and start connecting datasets to uncover deeper business insights.
- Connect relational datasets using
INNER JOINandLEFT JOIN. - Solve business questions by aggregating data across multiple tables.
- Practice data ingestion into your local MySQL instance.
- Open MySQL Workbench.
- Run the
schema.sqlscript to create your tables. - Use the Table Data Import Wizard to import the CSV files from the
data/folder:- Import
customers.csvinto thecustomerstable. - Import
orders.csvinto theorderstable.
- Import
- Open
exercises/joins_assignment.sql. - Complete the three tasks described in the file.
- Ensure your queries return the exact columns requested.
- Commit and push your changes to your GitHub Classroom repository.
- The automated grading will run and report your status in the "Actions" tab.
- customers:
customer_id,name,email,country - orders:
order_id,customer_id,order_date,total_amount