创建仅影响当前行的 MySQL 触发器

发布于 2024-12-09 05:07:01 字数 185 浏览 0 评论 0原文

我想设置一个触发器,仅影响插入的行,而不影响其他行。

所以我需要与每一行不同的东西。这是我现在所拥有的。

CREATE TRIGGER mytrigger BEFORE INSERT ON student
FOR EACH ROW SET @starost =new.starost+2;

I want to set a trigger that effects only the row that is inserted, not the other rows.

So I need something different than for each row. Here is what I have now.

CREATE TRIGGER mytrigger BEFORE INSERT ON student
FOR EACH ROW SET @starost =new.starost+2;

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

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

发布评论

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

评论(2

太阳男子 2024-12-16 05:07:01

INSERT 触发器中的 FOR EACH ROW 仅影响插入的行。它将处理多于一行的情况(因此名称暗示它处理多行)将是在批量插入上,就像使用 INSERT 时一样。 。 .SELECT 语法。

FOR EACH ROW in an INSERT trigger only affects the inserted rows. The case where it would handle more than one row (and as such the name implies it handles more than one row) would be on a bulk insert like when using the INSERT. . .SELECT syntax.

情仇皆在手 2024-12-16 05:07:01

您几乎已经完成了:

CREATE TRIGGER mytrigger BEFORE INSERT ON student 
FOR EACH ROW SET new.starost =new.starost+2;

它会在插入之前向 starost 字段添加两个

You nearly had it:

CREATE TRIGGER mytrigger BEFORE INSERT ON student 
FOR EACH ROW SET new.starost =new.starost+2;

It will add two to the starost field before insertion

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