在 PhpMyadmin 中创建触发器?
我正在使用两张桌子。
用户表包含名字和姓氏字段,而 contactinfo 是另一个包含名为“Name”的字段和用户表 ID 的表。
我想在用户表名字或姓氏更新时触发一个触发器。我想将此联系人信息的名称更改为他们在用户表中更改的名称。可以通过触发器吗?
I am using two tables.
User table contains the firstname and lastname field and contactinfo is another table contain the field called 'Name' with usertable Id.
I want to make a trigger whenever the User tables firstname or lastname is updated. I want change this contactinfo's Name to whatever they changed in the User table. Is it possible through trigger?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CREATE TRIGGER 的一般语法是:
看一下 http://www. Roseindia.net/mysql/mysql5/triggers.shtml 和 http://dev.mysql.com/doc/refman/5.1/en/create-trigger.html
The general syntax of CREATE TRIGGER is :
Take a look at examples from http://www.roseindia.net/mysql/mysql5/triggers.shtml and http://dev.mysql.com/doc/refman/5.1/en/create-trigger.html