Which of the following is the correct syntax to create a simple AFTER INSERT trigger in SQL?
ACREATE TRIGGER trg AFTER INSERT employees BEGIN UPDATE stats SET count = count + 1; END;
BCREATE TRIGGER trg AFTER INSERT ON employees FOR EACH ROW BEGIN UPDATE stats SET count = count + 1; END;
CCREATE TRIGGER trg BEFORE UPDATE ON employees FOR EACH ROW UPDATE stats SET count = count + 1;
DCREATE TRIGGER trg ON employees AFTER INSERT BEGIN UPDATE stats SET count = count + 1; END;