MySQL 触发器:表到表

发布于 2024-11-06 05:20:32 字数 294 浏览 1 评论 0原文

我需要编写一个触发器来在另一个表中创建一条记录。

在我的用户表中,当注册用户响应激活电子邮件时,他们在该表中的状态从 0 更改为 1。当发生此更改时,我需要在另一个具有自动递增 int 主 id(派对)的表中创建一条记录。

由于用户状态可以是三种不同的状态(不活动(0)、活动(1)和禁止(-1)),我需要此触发器仅在状态从 0 更改为 1 时触发。

有人可以帮忙吗我在这里使用 SQL?

在此处输入图像描述

I need to write a trigger that will create a record in another table.

In my user table when a registering user responds to an activation email their status in that table changes from 0 to 1. When this change occurs I need it create a record in another table that has an auto-incrementing int primary id (Party).

Since the user status can be of three different states (not active (0), active (1), and banned (-1) I need this trigger to only set off when the status is changed from 0 to 1.

Can someone please help me with the SQL here?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

城歌 2024-11-13 05:20:32
DELIMITER $

CREATE TRIGGER users_status_change AFTER UPDATE on users
FOR EACH ROW BEGIN
    IF OLD.Status = 0 AND NEW.Status = 1 THEN
        INSERT Party(Name)
        VALUES('blar blar');
    END IF;
END;
$

DELIMITER ;
DELIMITER $

CREATE TRIGGER users_status_change AFTER UPDATE on users
FOR EACH ROW BEGIN
    IF OLD.Status = 0 AND NEW.Status = 1 THEN
        INSERT Party(Name)
        VALUES('blar blar');
    END IF;
END;
$

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