Solution to Activity 12.1
In this activity, we will start by creating a new database in MySQL to store our data. To achieve this, do the following:
- Launch MySQL Workbench and connect to your local database instance:
- In your connection, create a new query defined as shown here:
CREATE DATABASE coffee_data
- With our database created, we will move to the
CoffeeProducts.xlsx
file. Inside this file, go to the Data tab and click MySQL for Excel:
- Once you click on MySQL for Excel, you can select the local instance connection that displays on the sidebar:
- Once you have selected the local instance connection, select the
coffee_data
database to connect to the database we...