Question: 6.(5 points) Interpret what the following SQL trigger accomplish. Any syntax errors are not intended and there are some extensions to the grammar. CREATE TRIGGER

6.(5 points) Interpret what the following SQL trigger accomplish. Any syntax errors are not intended and there are some extensions to the grammar. CREATE TRIGGER SET_FINE AFTER UPDATE ON Patron (ReturnedDate) REFERENCING NEW AS P FOR EACH ROW WHEN P.ReturnedDate> AddDays (P. BorrowedDate, 14) UPDATE Patron SET FineDue =1.00+ (DaysDifference (P.ReturnedDate, P. BorrowedDate) 14 ) * 0.25
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
