Question: In this assignment, you will be creating the DDL SQL code ( create database + create table statements ) to re - create the Access
In this assignment, you will be creating the DDL SQL code create database create table statements to recreate the Access schema Jet DB engine, filebased in a MySQL RDS instance. then expect to lose points on syntax errors at minimum. Don't just make this up without actually runningtesting it
Download the following Access file DO NOT USE ANY OTHER FILE: AnnandaleCupcakes vaccdb downarrow
Using the Access design view for the tables, go through every table and write the equivalent SQL DDL code to create that table in MySQL
SUBMISSION: Simply COPY your SQL DDL code and PASTE it into the textonly submission box. DO NOT submit a screenshot of your code or schema.
Make sure to actually RUN YOUR CODE in MySQL Workbench against your AWS MySQL instance TO ENSURE THAT IT WORKS.
To get you started, below is the code to create the new database schema as well as the customer table. You must complete the code for the rest of the tables customernote, event, payment, product, sale, and saleitem
create database annandalecupcakes;
use annandalecupcakes;
create table customer
customerid int primary key autoincrement,
firstname varchar
lastname varchar
phonenumber varchar
email varchar
street varchar
city varchar
state varchar
zip varchar
notes varchar
createdat datetime,
updatedat datetime
;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
