小王要加油哦
小王要加油哦
题解
题解 | #构造一个触发器audit_log#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #构造一个触发器audit_log#
279 浏览
0 回复
2022-04-10
小王要加油哦
+关注
构造一个触发器audit_log
http://www.nowcoder.com/practice/7e920bb2e1e74c4e83750f5c16033e2e
create trigger audit_log
after #触发时间
insert #监视事件
on employees_test
for each row
begin
insert into audit values(new.id,new.name);
end
Mysql
举报
收藏
赞
评论加载中...