Before you open anything, make sure the following two files have been downloaded from Google Drive and are saved on your computer:
Note: the northwind-data.sql file is the most important one. Make sure you pick it and not a similarly named file.
Open MySQL Workbench.
* Note: this file builds the empty tables. It is the skeleton of the database.
✓ Step 1 complete: the tables were created successfully. The structure now exists but is empty. The next step brings in the data.
Note: this step may take a few seconds — the script inserts thousands of rows. Wait until you see a success message.
Once the process is complete, here is how you know everything worked:
🎉 Congratulations! Your environment is ready. You can now start writing SQL queries on the Northwind database.
Click Northwind in the list to set it as the active database, and you are good to go.
Common issue: if Northwind does not appear — make sure you clicked Refresh and that you ran both files (NORTHWIND(4).sql and northwind-data.sql).
Open a new Query Editor in Workbench and run:
SELECT * FROM customers LIMIT 5;
If you get a table with 5 customers — the database is working perfectly! 🎉