Opret en tabel og opsæt en trigger for den tabel.
CREATE TABLE product(
product_id INT PRIMARY KEY,
product VARCHAR(40),
entryDate DATETIME,
expDate DATETIME
);
CREATE TRIGGER test_trigger BEFORE INSERT ON `product`
FOR EACH ROW SET
NEW.entryDate = IFNULL(NEW.entryDate, NOW()),
NEW.expDate = TIMESTAMPADD(DAY, 14, NEW.entryDate);
På hver indsættelse i tabellen sætter triggeren entryDate
til det aktuelle tidspunkt og expDate
til 14 dages tid.