Welcome to Assignment Heroes

MYSQL Project

MYSQL Project.

additional info: A part of the assignment requires this…

 

# DATA 620 Assignment 6.1

#

# SQL Script to create the business units table

# Assumes the database you want to put them into already exists

 

DROP TABLE if exists business_unit ;

DROP TABLE if exists product_BU ;

 

— A business unit is division of the company

 

CREATE TABLE Business_Unit (

BU_ID INTEGER PRIMARY KEY AUTO_INCREMENT,

BU_Name VARCHAR(25),

BU_Designation VARCHAR(25)

);

 

— Each product is assigned to one business unit for a given year

 

CREATE TABLE Product_BU (

Prod_BU_ID INTEGER PRIMARY KEY AUTO_INCREMENT,

BU_Name VARCHAR(25),

Product_Name VARCHAR(25),

Prod_BU_Year INT(4)

);

 

 

— Adding records to the Business Unit table

INSERT INTO Business_Unit (BU_Name, BU_Designation)

VALUES

(‘Snack’, ‘Growth’),

(‘On the go’, ‘Growth’),

(‘Energy’, ‘Growth’),

(‘Health’, ‘Mature’),

(‘Lunchtime’, ‘Mature’),

(‘Sugar’, ‘Decline’),

(‘GMO’, ‘Decline’)

;

 

 

— Adding records to the Product/Business Unit table

INSERT INTO Product_BU (BU_Name, Product_Name, Prod_BU_Year)

VALUES

(‘On the go’, ‘Blue Rock Candy’, ‘2012’),

(‘On the go’, ‘Blue Rock Candy’, ‘2013’),

(‘On the go’, ‘Blue Rock Candy’, ‘2014’),

(‘Snack’, ‘Crocodile Tears’, ‘2012’),

(‘Snack’, ‘Crocodile Tears’, ‘2013’),

(‘Snack’, ‘Crocodile Tears’, ‘2014’),

(‘Sugar’, ‘Giant Gummies’, ‘2012’),

(‘Sugar’, ‘Giant Gummies’, ‘2013’),

(‘Sugar’, ‘Giant Gummies’, ‘2014’),

(‘Sugar’, ‘Green Lightning’, ‘2012’),

(‘Lunchtime’, ‘Green Lightning’, ‘2013’),

(‘Lunchtime’, ‘Green Lightning’, ‘2014’),

(‘GMO’, ‘Grey Gummies’, ‘2012’),

(‘GMO’, ‘Grey Gummies’, ‘2013’),

(‘GMO’, ‘Grey Gummies’, ‘2014’),

(‘Sugar’, ‘Nap Be Gone’, ‘2012’),

(‘Sugar’, ‘Nap Be Gone’, ‘2013’),

(‘Sugar’, ‘Nap Be Gone’, ‘2014’),

(‘GMO’, ‘Orange Creepies’, ‘2012’),

(‘GMO’, ‘Orange Creepies’, ‘2013’),

(‘Lunchtime’, ‘Orange Creepies’, ‘2014’),

(‘Health’, ‘Panda Gummies’, ‘2012’),

(‘Health’, ‘Panda Gummies’, ‘2013’),

(‘Health’, ‘Panda Gummies’, ‘2014’),

(‘On the go’, ‘Pink Bubble Gum’, ‘2012’),

(‘On the go’, ‘Pink Bubble Gum’, ‘2013’),

(‘On the go’, ‘Pink Bubble Gum’, ‘2014’),

(‘Energy’, ‘Purple Pain’, ‘2012’),

(‘Energy’, ‘Purple Pain’, ‘2013’),

(‘Energy’, ‘Purple Pain’, ‘2014’),

(‘Energy’, ‘Red Hot Chili Peppers’, ‘2012’),

(‘Energy’, ‘Red Hot Chili Peppers’, ‘2013’),

(‘Energy’, ‘Red Hot Chili Peppers’, ‘2014’),

(‘Lunchtime’, ‘Yellow Zonkers’, ‘2012’),

(‘Lunchtime’, ‘Yellow Zonkers’, ‘2013’),

(‘Lunchtime’, ‘Yellow Zonkers’, ‘2014’)

;

 

  • attachment

    assignment_6.1_-_etl_project.2175_v01.pdf
  • attachment

    2012_product_data_students_1.xlsx
  • attachment

    2013_product_data_students_2.xlsx
  • attachment

    2014_product_da

MYSQL Project

Solution:

15% off for this assignment.

Our Prices Start at $11.99. As Our First Client, Use Coupon Code GET15 to claim 15% Discount This Month!!

Why US?

100% Confidentiality

Information about customers is confidential and never disclosed to third parties.

Timely Delivery

No missed deadlines – 97% of assignments are completed in time.

Original Writing

We complete all papers from scratch. You can get a plagiarism report.

Money Back

If you are convinced that our writer has not followed your requirements, feel free to ask for a refund.