Question: Need help with transferring and creating a ddl with the following information Write and execute the DDL necessary to create the database and tables to

Need help with transferring and creating a ddl with the following information
Write and executethe DDL necessary to create the database and tables to implement your design inMySQL.(50 points)
The names and data types for the attributes should be the same as in thedenormalizedtable. Be sure to indicate whether attributes are notnullablewhere appropriate. Note that attributesare created asnullableby default if not specified.Define all primary keys when creating your tables.This can be done in the CREATE TABLE statement or in a separate ALTER TABLE statement.Define all foreign key dependencies when creating your tables. This can be done in the CREATE TABLE statement or in a separateALTER TABLEstatement.
Write and execute the DML using INSERT INTO ... SELECT FROM ... statements to load data from thedenormalizedtable into your normalized tables.
attached is the ERD and here is what i got so far for the coding as well as information on the Database
create database hrbrown4_finalassignment;
//make hrbrown4_finalassignment default database
//create table
create Table Competitor (
//add attributes
//add PK
//add FK
);
Need help with transferring and creating a ddl

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!