In this lab, you'll go through the process of designing and creating a database. From there, you'll begin to populate this table with mock data provided to you.
You will be able to:
- Use knowledge of the structure of databases to create a database and populate it
You are looking to design a database for a school that will house various information from student grades to contact information, class roster lists and attendance. First, think of how you would design such a database. What tables would you include? What columns would each table have? What would be the primary means to join said tables?
Now that you've put a little thought into how you might design your database, it's time to go ahead and create it! Start by import the necessary packages. Then, create a database called school.sqlite.
# Import necessary packages
# Create the database school.sqlite
Create a table called contactInfo to house contact information for both students and staff. Be sure to include columns for first name, last name, role (student/staff), telephone number, street, city, state, and zipcode. Be sure to also create a primary key for the table.
# Your code here
Below, code is provided for you in order to load a list of dictionaries. Briefly examine the list. Each dictionary in the list will serve as an entry for your contact info table. Once you've briefly investigated the structure of this data, write a for loop to iterate through the list and create an entry in your table for each person's contact info.
# Load the list of dictionaries; just run this cell
import pickle
with open('contact_list.pickle', 'rb') as f:
contacts = pickle.load(f)
# Iterate over the contact list and populate the contactInfo table here
Query the Table to Ensure it is populated
# Your code here
Persist your changes by committing them to the database.
# Your code here
Create a new table in the database called "grades". In the table, include the following fields: userId, courseId, grade.
** This problem is a bit more tricky and will require a dual key. (A nuance you have yet to see.) Here's how to do that:
CREATE TABLE table_name(
column_1 INTEGER NOT NULL,
column_2 INTEGER NOT NULL,
...
PRIMARY KEY(column_1,column_2,...)
);
# Create the grades table
An analyst just realized that there is a duplicate entry in the contactInfo table! Find and remove it.
# Find the duplicate entry
# Delete the duplicate entry
# Check that the duplicate entry was removed
Ed Lyman just moved to 2910 Simpson Avenue York, PA 17403
. Update his address accordingly.
# Update Ed's address
# Query the database to ensure the change was made
Once again, persist your changes by committing them to the database.
# Your code here
While there's certainly more to do with setting up and managing this database, you got a taste for creating, populating, and maintaining databases! Feel free to continue fleshing out this exercise for more practice.