mysql触发器实现一表插入数据,另一表自动更新新指定数据

CREATE DEFINER=`root`@`localhost` TRIGGER `after_insert` AFTER INSERT ON `student` FOR EACH ROW begin -- 触发器内容开始
	-- 触发器内容主体,每行用分号结尾
	update course set grade = grade+1 where new.classid=course.id;
end

mysql触发器实现一表插入数据,另一表自动更新新指定数据_第1张图片

插入数据表名:student 

更新数据是course表grade

只是实验没关心逻辑,上面代码实现了在 student 插入一条数据,course表中满足 course.id = 插入数据的 classid 的所有数据的grade加1

扩展:

CREATE DEFINER=`root`@`localhost` TRIGGER `after_insert_post` AFTER INSERT ON `post` FOR EACH ROW begin -- 触发器内容开始
	-- 触发器内容主体,每行用分号结尾
	update invitation set count = count+1 where new.invitationid=invitation.invitationid;
	update invitation set lastposter = (select usre_name from users where users.userid = new.userid) where new.invitationid=invitation.invitationid;
	update invitation set last_time = new.post_info_text where new.invitationid=invitation.invitationid;
end

更多详细文章

cmd 命令行模式下怎么为mysql创建触发器

Navicat 怎么创建触发器

HeidiSql 怎么创建mysql触发器(避坑指南)

你可能感兴趣的:(从MySQl坑中爬起来)