触发器作用
Posted qmk-716
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了触发器作用相关的知识,希望对你有一定的参考价值。
触发器类似于一个监听器的作用。
create trigger triempAdd after update on employee row
insert into test_log(content)values(‘员工表修改了一条记录‘) ----------修改
create trigger triempAdd after delete on employee row
insert into test_log(content)values(‘员工表修改了一条记录‘) ----------修改
以上是关于触发器作用的主要内容,如果未能解决你的问题,请参考以下文章