触发器
触发器依附的表称为基本表,
create trigger触发器名称(before|after)(insert|update|delete)on 表名/视图名 for each row (此括号以后内容为触发器执行操作)delete from student where 条件;
在insert操作时,新的内容会被插入到new表中
在delete操作时,旧的内容会被移到old表中,我们仍可以在old表中拿到被删除的数据
在update操作时,旧的内容会被移到old表中,新的内容会出现在new表中
for each row 会在每一行都生效