Consider the following schemas: Employee(staffId, name, salary, depNo) primary key staffId foreign key depNo references Department(depNo) Department(depNo,depname, totalSal) primary key depNo and the following procedural SQL statement: CREATE TRIGGER mystery AFTER INSERT ON Employee FOR EACH ROW IF NOT (NEW.depNo IS NULL) UPDATE Department SET totalSal = totalSal + NEW.salary NEW.depNo WHERE depNo END IF / = Explain what this trigger does without referring to its code. Describe the effect on the database that it has.

Oracle 12c: SQL
3rd Edition
ISBN:9781305251038
Author:Joan Casteel
Publisher:Joan Casteel
Chapter13: Views
Section: Chapter Questions
Problem 2MC
icon
Related questions
Question
Consider the following schemas:
Employee(staffId, name, salary, depNo)
primary key staffId
foreign key depNo references Department(depNo)
Department(depNo,depname, totalSal)
primary key depNo
and the following procedural SQL statement:
CREATE TRIGGER mystery
AFTER INSERT ON Employee
FOR EACH ROW
IF NOT (NEW.depNo IS NULL)
UPDATE Department
SET totalSal = totalSal + NEW.salary
NEW.depNo
WHERE depNo
ENDIF
/
=
Explain what this trigger does without referring to its code. Describe the effect on the database
that it has.
Transcribed Image Text:Consider the following schemas: Employee(staffId, name, salary, depNo) primary key staffId foreign key depNo references Department(depNo) Department(depNo,depname, totalSal) primary key depNo and the following procedural SQL statement: CREATE TRIGGER mystery AFTER INSERT ON Employee FOR EACH ROW IF NOT (NEW.depNo IS NULL) UPDATE Department SET totalSal = totalSal + NEW.salary NEW.depNo WHERE depNo ENDIF / = Explain what this trigger does without referring to its code. Describe the effect on the database that it has.
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Intermediate SQL concepts
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.
Recommended textbooks for you
Oracle 12c: SQL
Oracle 12c: SQL
Computer Science
ISBN:
9781305251038
Author:
Joan Casteel
Publisher:
Cengage Learning
A Guide to SQL
A Guide to SQL
Computer Science
ISBN:
9781111527273
Author:
Philip J. Pratt
Publisher:
Course Technology Ptr
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