-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSessionScript.mysql
More file actions
232 lines (214 loc) · 9.03 KB
/
SessionScript.mysql
File metadata and controls
232 lines (214 loc) · 9.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
-- Assignment Lab 2 - triggers
use 169595_lab2_triggers;
-- Show employees table creation script
show create table employees;
-- Creating employees_undo table script
CREATE TABLE `employees_undo` (
`date_of_change` timestamp(2) NOT NULL DEFAULT CURRENT_TIMESTAMP(2)
COMMENT 'Records the date and time when the data was manipulated. This will
help to keep track of the changes made. The assumption is that no 2 users
will change the exact same record at the same time (with a precision of a
hundredth of a second, e.g., 4.26 seconds).',
`employeeNumber` int NOT NULL,
`lastName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`firstName` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`extension` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`officeCode` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`reportsTo` int DEFAULT NULL,
`jobTitle` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
`change_type` varchar(50) NOT NULL COMMENT 'Records the type of data
manipulation that was done, for example an insertion, an update, or a
deletion.',
PRIMARY KEY (`date_of_change`),
UNIQUE KEY `date_of_change_UNIQUE` (`date_of_change`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
-- Create a trigger that is fired before updating an employee’s data
CREATE
TRIGGER TRG_BEFORE_UPDATE_ON_employees
BEFORE UPDATE ON employees FOR EACH ROW
INSERT INTO `employees_undo` SET
`date_of_change` = CURRENT_TIMESTAMP(2),
`employeeNumber` = OLD.`employeeNumber` ,
`lastName` = OLD.`lastName` ,
`firstName` = OLD.`firstName` ,
`extension` = OLD.`extension` ,
`email` = OLD.`email` ,
`officeCode` = OLD.`officeCode` ,
`reportsTo` = OLD.`reportsTo` ,
`jobTitle` = OLD.`jobTitle` ,
`change_type` = 'An update DML operation was executed';
-- Step 3 Show triggers
SHOW TRIGGERS;
-- Step 4. Confirm that the trigger is fired when an update is performed on the “employees” relation
-- Update Mary's last name and email using the scripts below
UPDATE `employees` SET `lastName` = 'Muiruri' WHERE employeeNumber='1056';
update `employees` set email = 'mmuiruri@classicmodelcars.com' WHERE `employeeNumber` = '1056';
-- Execute the following command to view the updated data:
SELECT * FROM employees_undo;
-- STEP 5 - Create reminders table
CREATE TABLE `customers_data_reminders` ( `customerNumber` int NOT NULL COMMENT 'Identifies the customer whose data is partly missing', `customers_data_reminders_timestamp` timestamp(2) NOT NULL DEFAULT CURRENT_TIMESTAMP(2) COMMENT 'Records the time when the missing data was detected', `customers_data_reminders_message` varchar(100) NOT NULL COMMENT 'Records a message that helps the customer service personnel to know what data is missing from the customer\'s record', `customers_data_reminders_status` tinyint NOT NULL DEFAULT '0' COMMENT 'Used to record the status of a reminder (0 if it has not yet been addressed and 1 if it has been addressed)', PRIMARY KEY (`customerNumber`,`customers_data_reminders_timestamp`,`customers_data_reminders_message`,`customers_data_reminders_status`), CONSTRAINT `FK_1_customers_TO_M_customers_data_reminders` FOREIGN KEY (`customerNumber`) REFERENCES `customers` (`customerNumber`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB COMMENT='Used to remind the customer service personnel about a client\'s missing data. This enables them to ask the client to provide the data during the next interaction with the client.';
-- STEP 6 Create a trigger that has multiple statements
DELIMITER $$
CREATE TRIGGER TRG_AFTER_INSERT_ON_customers AFTER
INSERT
ON customers FOR EACH ROW
BEGIN
IF
NEW.postalCode IS NULL THEN
INSERT INTO
`customers_data_reminders`
(
`customerNumber` ,
`customers_data_reminders_timestamp`,
`customers_data_reminders_message`
)
VALUES
(
NEW.customerNumber ,
CURRENT_TIMESTAMP(2),
'Please remember to record the client\'s postal code'
)
;
END IF;
IF
NEW.salesRepEmployeeNumber IS NULL THEN
INSERT INTO
`customers_data_reminders`
(
`customerNumber` ,
`customers_data_reminders_timestamp`,
`customers_data_reminders_message`
)
VALUES
(
NEW.customerNumber ,
CURRENT_TIMESTAMP(2),
'Please remember to assign a sales representative to the client'
)
;
END IF;
IF
NEW.creditLimit IS NULL THEN
INSERT INTO
`customers_data_reminders`
(
`customerNumber` ,
`customers_data_reminders_timestamp`,
`customers_data_reminders_message`
)
VALUES
(
NEW.customerNumber ,
CURRENT_TIMESTAMP(2),
'Please remember to set the client\'s credit limit'
)
;
END IF;
END$$
DELIMITER ;
-- STEP 7 Execute the statemeent below to confirm if the above trigger works
INSERT INTO
`customers`
(
`customerNumber` ,
`customerName` ,
`contactLastName` ,
`contactFirstName`,
`phone` ,
`addressLine1` ,
`city` ,
`country`
)
VALUES
(
'497' ,
'House of Leather',
'Wambua' ,
'Gabriel' ,
'+254 720 123 456',
'9 Agha Khan Walk',
'Nairobi' ,
'Kenya'
);
-- STEP 8 : Create a new table to store parts data
create table part (
part_no VARCHAR(18) primary key,
part_description VARCHAR(255),
part_supplier_tax_PIN VARCHAR (11) check (part_supplier_tax_PIN regexp
'^[A-Z]{1}[0-9]{9}[A-Z]{1}$'),
part_supplier_email VARCHAR (55),
part_buyingprice DECIMAL(10,
2 ) not null check (part_buyingprice >= 0),
part_sellingprice DECIMAL(10,
2) not null,
constraint CHK_part_sellingprice_GT_buyingprice check
(part_sellingprice >= part_buyingprice),
constraint CHK_part_valid_supplier_email check (part_supplier_email
regexp '^[a-zA-Z0-9]{3,}@[a-zA-Z0-9]{1,}\\.[a-zA-Z0-9.]{1,}$')
);
-- STEP 9. Create the following user-defined error in a trigger
DELIMITER //
CREATE TRIGGER TRG_BEFORE_UPDATE_ON_part BEFORE
UPDATE
ON part FOR EACH ROW
BEGIN
DECLARE errorMessage VARCHAR(255);
DECLARE EXIT HANDLER FOR SQLSTATE '45000'
BEGIN
RESIGNAL
SET MESSAGE_TEXT = errorMessage;
END
;
SET errorMessage = CONCAT('The new selling price of ', NEW.part_sellingprice, ' cannot be 2 times greater than the current selling price of ', OLD.part_sellingprice);
IF
NEW.part_sellingprice > OLD.part_sellingprice * 2 THEN SIGNAL SQLSTATE '45000';
END IF;
END
// DELIMITER ;
-- STEP 10 Confirm that the static, dynamic, and semantic constraints are working
-- This failed due to the check constraint on selling price must be greater or equal to buying price
INSERT INTO `part` (`part_no`, `part_description`, `part_supplier_tax_PIN`,
`part_supplier_email`, `part_buyingprice`, `part_sellingprice`)
VALUES ('001', 'The tyres of a 1958 Chevy Corvette Limited Edition',
'P05120157U', 'toysRus@gmail', '100', '50');
-- Assignment Section
-- Creating triggers that will be fired by the transaction
-- This trigger prevents any transaction from updating the MSRP of a product to be less than its mrsp price or greater tripple its buying price
DELIMITER //
CREATE TRIGGER check_product_price BEFORE
UPDATE
ON products FOR EACH ROW
begin
DECLARE errorMessage VARCHAR(255);
DECLARE EXIT HANDLER FOR SQLSTATE '45000'
BEGIN
RESIGNAL
SET MESSAGE_TEXT = errorMessage;
END
;
-- Set the error message at this point.
SET errorMessage = CONCAT('The new MSRP of ', NEW.MSRP, ' cannot be less than the current MSRP or 3 times greater than the current its buying price ', OLD.buyingPrice);
-- Check if the updated Manufacturer's suggested retail price is out of range
if
NEW.MSRP < OLD.MSRP
or NEW.MSRP > old.buyPrice*3 then
-- Rollback the transaction and raise an error
signal sqlstate '45000';
end if;
END
//
DELIMITER;
-- To test the above trigger, lets update the MSRP for product code S10_1678 to 155.00 using the query below
update products set MSRP =155 where productCode = 'S10_1678';
DELIMITER $$
CREATE TRIGGER products_quantity_check_trigger BEFORE UPDATE ON products
FOR EACH ROW
BEGIN
IF NEW.QuantityInStock < 0 THEN
SIGNAL SQLSTATE '45000' SET MESSAGE_TEXT = 'Invalid quantity update: Quantity cannot go below 0.';
END IF;
END$$
DELIMITER ;
-- To test the above, lets start a transation
select * from orderdetails o where productCode ='S18_1749' ;