题解 | #构造一个触发器audit_log#
构造一个触发器audit_log
http://www.nowcoder.com/practice/7e920bb2e1e74c4e83750f5c16033e2e
create TRIGGER audit_log --创建触发器 after insert on employees_test --触发后往此表插入数据 for each row -- 遍历被插入的表字段 begin --job开始 insert into audit values(new.id,new.name); --插入此表 end -- job结束
疑问点:for each row 起到了什么作用