Question
HERE IS THE TINY VIDEO SCHEMA FOR MYSQL WORKBENCH /* Database Systems, 9th Ed., Coronel/MOrris/Rob */ /* Type of SQL : MySQL */ CREATE SCHEMA
HERE IS THE TINY VIDEO SCHEMA FOR MYSQL WORKBENCH
/* Database Systems, 9th Ed., Coronel/MOrris/Rob */ /* Type of SQL : MySQL */ CREATE SCHEMA IF NOT EXISTS TINY_VIDEO; USE TINY_VIDEO; DROP TABLE IF EXISTS detail_rental; DROP TABLE IF EXISTS rental; DROP TABLE IF EXISTS membership; DROP TABLE IF EXISTS video; DROP TABLE IF EXISTS movie; DROP TABLE IF EXISTS price; /*Create table price*/ CREATE TABLE price (price_id INTEGER PRIMARY KEY AUTO_INCREMENT, description VARCHAR(20) NOT NULL, rental_fee DECIMAL(5,2), daily_late_fee DECIMAL(5,2)); /*Insert data into price*/ INSERT INTO price VALUES(1,'Standard',2.5,1); INSERT INTO price VALUES(2,'New Release',4.0,3); INSERT INTO price VALUES(3,'Discount',2.0,1); INSERT INTO price VALUES(4,'Weekly Special',1.5,.5); /*Create table movie*/ CREATE TABLE movie (movie_id INTEGER PRIMARY KEY AUTO_INCREMENT, title VARCHAR(75) NOT NULL, year_released INTEGER, cost DECIMAL(5,2), genre VARCHAR(50), price_id INTEGER, FOREIGN KEY(price_id) REFERENCES price(price_id)); /*Insert data into movie*/ INSERT INTO movie VALUES(1234,'The Cesar Family Christmas',2007,39.95,'FAMILY',2); INSERT INTO movie VALUES(1235,'Smokey Mountain Wildlife',2004,59.95,'ACTION',3); INSERT INTO movie VALUES(1236,'Richard Goodhope',2008,59.95,'DRAMA',2); INSERT INTO movie VALUES(1237,'Beatnik Fever',2007,29.95,'COMEDY',2); INSERT INTO movie VALUES(1238,'Constant Companion',2008,89.95,'DRAMA',NULL); INSERT INTO movie VALUES(1239,'Where Hope Dies',1998,25.49,'DRAMA',3); INSERT INTO movie VALUES(1245,'Time to Burn',2006,45.49,'ACTION',3); INSERT INTO movie VALUES(1246,'What He Doesn''t Know',2006,58.29,'COMEDY',1); /*Create table video*/ CREATE TABLE video (video_id INTEGER PRIMARY KEY AUTO_INCREMENT, purchase_date DATE, movie_id INTEGER, FOREIGN KEY(movie_id) REFERENCES movie(movie_id)); /*Insert data into video*/ INSERT INTO video VALUES(54321,'2008-06-18',1234); INSERT INTO video VALUES(54324,'2008-06-18',1234); INSERT INTO video VALUES(54325,'2008-06-18',1234); INSERT INTO video VALUES(34341,'2007-01-22',1235); INSERT INTO video VALUES(34342,'2007-01-22',1235); INSERT INTO video VALUES(34366,'2009-03-02',1236); INSERT INTO video VALUES(34367,'2009-03-02',1236); INSERT INTO video VALUES(34368,'2009-03-02',1236); INSERT INTO video VALUES(34369,'2009-03-02',1236); INSERT INTO video VALUES(44392,'2008-10-21',1237); INSERT INTO video VALUES(44397,'2008-10-21',1237); INSERT INTO video VALUES(59237,'2009-02-14',1237); INSERT INTO video VALUES(61388,'2007-01-25',1239); INSERT INTO video VALUES(61353,'2006-01-28',1245); INSERT INTO video VALUES(61354,'2006-01-28',1245); INSERT INTO video VALUES(61367,'2008-07-30',1246); INSERT INTO video VALUES(61369,'2008-07-30',1246); /*Create table membership*/ CREATE TABLE membership (membership_id INTEGER PRIMARY KEY AUTO_INCREMENT, first_name VARCHAR(30) NOT NULL, last_name VARCHAR(30) NOT NULL, street VARCHAR(120), city VARCHAR(50), state VARCHAR(2), zip VARCHAR(5), balance DECIMAL(10,2)); /*Insert data into membership*/ INSERT INTO membership VALUES(102,'Tami','Dawson','2632 Takli Circle','Norene','TN','37136',11); INSERT INTO membership VALUES(103,'Curt','Knight','4025 Cornell Court','Flatgap','KY','41219',6); INSERT INTO membership VALUES(104,'Jamal','Melendez','788 East 145th Avenue','Quebeck','TN','38579',0); INSERT INTO membership VALUES(105,'Iva','Mcclain','6045 Musket Ball Circle','Summit','KY','42783',15); INSERT INTO membership VALUES(106,'Miranda','Parks','4469 Maxwell Place','Germantown','TN','38183',0); INSERT INTO membership VALUES(107,'Rosario','Elliott','7578 Danner Avenue','Columbia','TN','38402',5); INSERT INTO membership VALUES(108,'Mattie','Guy','4390 Evergreen Street','Lily','KY','40740',0); INSERT INTO membership VALUES(109,'Clint','Ochoa','1711 Elm Street','Greenville','TN','37745',10); INSERT INTO membership VALUES(110,'Lewis','Rosales','4524 Southwind Circle','Counce','TN','38326',0); INSERT INTO membership VALUES(111,'Stacy','Mann','2789 East Cook Avenue','Murfreesboro','TN','37132',8); INSERT INTO membership VALUES(112,'Luis','Trujillo','7267 Melvin Avenue','Heiskell','TN','37754',3); INSERT INTO membership VALUES(113,'Minnie','Gonzales','124 6th Street West','Williston','ND','58801',0); /*Create table rental*/ CREATE TABLE rental (rental_id INTEGER PRIMARY KEY AUTO_INCREMENT, rental_date DATE, membership_id INTEGER, FOREIGN KEY(membership_id) REFERENCES membership(membership_id)); /*Insert data into rental*/ INSERT INTO rental VALUES(1001,'2009-03-01',103); INSERT INTO rental VALUES(1002,'2009-03-01',105); INSERT INTO rental VALUES(1003,'2009-03-02',102); INSERT INTO rental VALUES(1004,'2009-03-02',110); INSERT INTO rental VALUES(1005,'2009-03-02',111); INSERT INTO rental VALUES(1006,'2009-03-02',107); INSERT INTO rental VALUES(1007,'2009-03-02',104); INSERT INTO rental VALUES(1008,'2009-03-03',105); INSERT INTO rental VALUES(1009,'2009-03-03',111); /*Create table detailrental*/ CREATE TABLE detail_rental (rental_id INTEGER, video_id INTEGER, fee DECIMAL(5,2), due_date DATE, return_date DATE, daily_late_fee DECIMAL(5,2), PRIMARY KEY(rental_id, video_id), FOREIGN KEY(rental_id) REFERENCES rental(rental_id), FOREIGN KEY(video_id) REFERENCES video(video_id)); /*Insert data into dailyrental*/ INSERT INTO detail_rental VALUES(1001,34342,2,'2009-03-04','2009-03-02',1); INSERT INTO detail_rental VALUES(1001,61353,2,'2009-03-04','2009-03-03',1); INSERT INTO detail_rental VALUES(1002,59237,3.5,'2009-03-04','2009-03-04',3); INSERT INTO detail_rental VALUES(1003,54325,3.5,'2009-03-04','2009-03-09',3); INSERT INTO detail_rental VALUES(1003,61369,2,'2009-03-06','2009-03-09',1); INSERT INTO detail_rental VALUES(1003,61388,0,'2009-03-06','2009-03-09',1); INSERT INTO detail_rental VALUES(1004,44392,3.5,'2009-03-05','2009-03-07',3); INSERT INTO detail_rental VALUES(1004,34367,3.5,'2009-03-05','2009-03-07',3); INSERT INTO detail_rental VALUES(1004,34341,2,'2009-03-07','2009-03-07',1); INSERT INTO detail_rental VALUES(1005,34342,2,'2009-03-07','2009-03-05',1); INSERT INTO detail_rental VALUES(1005,44397,3.5,'2009-03-05','2009-03-05',3); INSERT INTO detail_rental VALUES(1006,34366,3.5,'2009-03-05','2009-03-04',3); INSERT INTO detail_rental VALUES(1006,61367,2,'2009-03-07',NULL,1); INSERT INTO detail_rental VALUES(1007,34368,3.5,'2009-03-05',NULL,3); INSERT INTO detail_rental VALUES(1008,34369,3.5,'2009-03-05','2009-03-05',3); INSERT INTO detail_rental VALUES(1009,54324,3.5,'2009-03-05',NULL,3); INSERT INTO detail_rental VALUES(1001,34366,3.5,'2009-03-04','2009-03-02',3);
Using MySQL commands answer the questions listed below using the Tiny Video schema. Submit via the D2L drop box the final SQL scripts for each problem. You must answer all parts of the question before receiving any partial credit. For example, do not expect any points if all you answer is part b of question 3. Each part builds upon the correct answer of the previous part.
QUESTION 1
A: Create a view called customer_with_balances that has the following columns: customer_number, customer_lname and customer_balance. The view should only include those customers where the customer balance is greater than zero.
B. Write the SELECT statement to show all records from the customer_with_balances view.
QUESTION 2:
A: Create a stored function called get_customer_balance which will return a customers balance from the membership table by passing in a membership number.
B: Write a single SELECT statement to show the customer balance for member 102 by using the get_customer_balance function.
QUESTION 3
A. Create a trigger called membership_balance_updates that will capture any updates made to the balance column in membership. The trigger should only capture those transactions in which the members balance actually changes. The membership_id, old balance, new balance, user, transaction date should be placed into a membership_balance_audit table.
Use the following script to create the membership_balance_audit table.
CREATE TABLE IF NOT EXISTS membership_balance_audit
(mem_num INTEGER,
old_mem_balance DECIMAL(10,2),
new_mem_balance DECIMAL(10,2),
transaction_date TIMESTAMP,
transaction_user VARCHAR(50));
B. Run the following update statements after the trigger has been created.
UPDATE membership SET balance = 10.00 WHERE membership_id = 104;
UPDATE membership SET first_name = 'Dan' WHERE membership_id = 103;
C. Write the SELECT statement to show all records in the membership_balance_audit table. (Note: The transaction date will be different for your result set.)
PLEASE HELP ME SOLVE THE PROBLEM
customer numbercustomer Iname 102 103 105 107 109 Dawson Knight Mcclain Elliott Ochoa Mann Trujillo customer balance 11.00 6.00 15.00 5.00 10.00 8.00 3.00 112Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started