There are three tables in this database (see image). Write MYSQL code for: (1) Create a trigger “insert_inventory” on table “Inventory”. The trigger is fired after a  row is inserted in table “Inventory”. After a row is inserted in table “inventory”, the  “itemid”, the insertion time, and the action is inserted in table “Inventory_history”.  The action is set to ‘add an item’. The oldprice is set to null.   Test your trigger by inserting a row into Inventory and displaying the contents of  Inventory_history.  (2) Create a trigger “change_quantity” on table “Transaction”. The trigger is fired after  a row is inserted in table “Transaction”. After a row is inserted in table  “Transaction”, update the “quantity” in table “Inventory”. For example, if 3 iWatch  are sold, then the quantity of iWatch in table “Inventory” is decreased by 3.   Test your trigger by inserting a row into Transaction and displaying the contents of  the relevant row in Inventory.  (3) Create a trigger “change_price” on table “Inventory”. The trigger is fired before a  change is made to the “Inventory” table. Before the price of an item is changed, the  “itemid”, the item’s old price, the action, and the time of change are inserted into  the table “Inventory_history”. The action is set to “price change”.   Test your trigger by updating a row in Inventory and displaying the contents of  Inventory_history.

Database Systems: Design, Implementation, & Management
11th Edition
ISBN:9781285196145
Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Chapter7: Introduction To Structured Query Language (sql)
Section: Chapter Questions
Problem 21P: Write the SQL code to calculate the ASSIGN_CHARGE values in the ASSIGNMENT table in the...
icon
Related questions
icon
Concept explainers
Question

There are three tables in this database (see image). Write MYSQL code for:

(1) Create a trigger “insert_inventory” on table “Inventory”. The trigger is fired after a 
row is inserted in table “Inventory”. After a row is inserted in table “inventory”, the 
“itemid”, the insertion time, and the action is inserted in table “Inventory_history”. 
The action is set to ‘add an item’. The oldprice is set to null.  
Test your trigger by inserting a row into Inventory and displaying the contents of 
Inventory_history. 
(2) Create a trigger “change_quantity” on table “Transaction”. The trigger is fired after 
a row is inserted in table “Transaction”. After a row is inserted in table 
“Transaction”, update the “quantity” in table “Inventory”. For example, if 3 iWatch 
are sold, then the quantity of iWatch in table “Inventory” is decreased by 3.  
Test your trigger by inserting a row into Transaction and displaying the contents of 
the relevant row in Inventory. 
(3) Create a trigger “change_price” on table “Inventory”. The trigger is fired before a 
change is made to the “Inventory” table. Before the price of an item is changed, the 
“itemid”, the item’s old price, the action, and the time of change are inserted into 
the table “Inventory_history”. The action is set to “price change”.  
Test your trigger by updating a row in Inventory and displaying the contents of 
Inventory_history.  

create table Inventory (
itemid varchar(20) primary key, name varchar(30),
price decimal(6,2),
quantity int
);
create table Transaction (
transid int auto_increment primary key,
itemid varchar(20),
quantity int,
time datetime,
foreign key (itemid) references Inventory (itemid)
);
create table Inventory_history (
id int auto_increment primary key,
itemid varchar(20),
action varchar(20),
oldprice decimal(6,2),
time datetime,
foreign key (itemid) references Inventory(itemid)
);
Transcribed Image Text:create table Inventory ( itemid varchar(20) primary key, name varchar(30), price decimal(6,2), quantity int ); create table Transaction ( transid int auto_increment primary key, itemid varchar(20), quantity int, time datetime, foreign key (itemid) references Inventory (itemid) ); create table Inventory_history ( id int auto_increment primary key, itemid varchar(20), action varchar(20), oldprice decimal(6,2), time datetime, foreign key (itemid) references Inventory(itemid) );
Expert Solution
Step 1

(1)

MYSQL code for creating trigger “insert_inventory” on table “Inventory”:

----------------------------------------------------------------------------------------
CREATE TRIGGER insert_inventory 
AFTER INSERT ON Inventory 
FOR EACH ROW 
BEGIN 
    INSERT INTO Inventory_history (itemid, action, oldprice, time) 
    VALUES (NEW.itemid, 'add an item', NULL, NOW()); 
END;
----------------------------------------------------------------------------------------
To test the trigger, you can insert a row into the Inventory table:
----------------------------------------------------------------------------------------
INSERT INTO Inventory (itemid, name, price, quantity) 
VALUES ('1001', 'iPhone 12', 799.99, 50);
----------------------------------------------------------------------------------------
Then, you can display the contents of the Inventory_history table to verify that a new row has been inserted:
----------------------------------------------------------------------------------------
SELECT * FROM Inventory_history;
----------------------------------------------------------------------------------------
The output will be like this:
----------------------------------------------------------------------------------------
id itemid action oldprice time
1 1001 add an item NULL 2023-02-24 10:00:00
----------------------------------------------------------------------------------------
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Query Syntax
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781285196145
Author:
Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos Coronel
Publisher:
Cengage Learning
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781305627482
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning
A Guide to SQL
A Guide to SQL
Computer Science
ISBN:
9781111527273
Author:
Philip J. Pratt
Publisher:
Course Technology Ptr