本文主要是介绍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
插入数据表名: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触发器实现一表插入数据,另一表自动更新新指定数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!