CREATE TRIGGER `mytrigger` AFTER INSERT ON `iot`
FOR EACH ROW BEGIN
DECLARE a float;
DECLARE b float;
DECLARE c float;
DECLARE d float;
SELECT SUM(bill) into c from iot;
SELECT SUM(unit) into d from iot;
INSERT INTO list
VALUES('',c,d);
END
Tech Blog & Tutorials
0 comments:
Post a Comment