当用户更新另一个表时,用php自动更新MYSQL表
你好
我将用一个例子向你解释。
如果管理员更新 admin
表,则一些数据会自动添加到 stock
表中。如果客户向 sales
表提交表单,则 stock
表中的部分数据也会自动更新。
我的意思是我想要库存表中管理表和销售表的一些内容。我想用 PHP 来完成这个过程。
Hello
I'll explain to you with an example.
If an admin updates the admin
table, then some data is automatically added to the stock
table. And if a client submits a form to the sales
table, then also some parts of the data update automatically in the stock
table.
I mean I want some contents of the admin and sales tables in the stock table. I want to do the process with PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用触发器(如 Cybernate 提到的)或存储过程来组合这两个操作。
触发器 - http://dev.mysql.com/doc/refman/5.0 /en/triggers.html
存储过程 - http:// dev.mysql.com/tech-resources/articles/mysql-storedproc.html
如果您只想在 PHP 中执行此操作,只需将更新添加到您正在使用的任何函数中的另一个表即可。
You want to use either triggers, as Cybernate mentioned, or stored procedures to combine the two operations.
Triggers - http://dev.mysql.com/doc/refman/5.0/en/triggers.html
Stored Procedures - http://dev.mysql.com/tech-resources/articles/mysql-storedproc.html
If you want to do it in PHP only, simply add the update to the other table within whatever functions you are using.