关于mysql 的触发器用法
发表在MySQL图书答疑
2018-07-12 悬赏:1 学分
《MySQL数据库管理与开发(慕课版)》第8章 触发器
是否精华
是
否
版块置顶:
是
否
我在学mysql时有问题想问问关于触发器的<<mysql入门到精通>>
create trigger tt after insert on test_1 for each row
begin
if ( test_1.data is not null and test_1.info is not null from test_1)
then
update test_2 set test_2.setinfo="yes" ;
endif
end
我的触发器目的是,检查 test_1表中的 data 与 info是非空,非空的话,在test_2表中插入 yes;
于2018-07-12 14:08:46编辑