当用户更新另一个表时,用php自动更新MYSQL表

发布于 2024-10-30 08:50:41 字数 214 浏览 1 评论 0原文

你好
我将用一个例子向你解释。

如果管理员更新 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

掩饰不了的爱 2024-11-06 08:50:41

您想要使用触发器(如 Cyber​​nate 提到的)或存储过程来组合这两个操作。

触发器 - 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文