MySQL 中的插入、删除表(魔术表)

发布于 2024-11-14 19:16:54 字数 105 浏览 2 评论 0原文

我是 MS-SQL 的普通用户,但现在正在开发一个以 mysql 作为后端的项目。

请告诉我mysql中是否存在这样的插入/删除表(魔术表),我可以在触发器内部或正常查询中使用它。

I am regular user of MS-SQL but now working on a project which has mysql as a back-end.

Please tell me that is there exists such a inserted/Deleted tables (Magic tables) in mysql which I can use inside trigger or in normal queries.

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

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

发布评论

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

评论(1

走过海棠暮 2024-11-21 19:16:54

它们在 MySQL 中称为 NEWOLD

NEW 是要插入的新记录或更新的数据。

OLD 是被删除的记录,或者是更新前的旧数据。

请参阅此处创建触发器的文档:http://dev. mysql.com/doc/refman/5.0/en/create-trigger.html

They are called NEW and OLD in MySQL.

NEW is the new record to be inserted or the updated data.

OLD is the deleted record, or the old data before an update.

See the documentation for creating a trigger here: http://dev.mysql.com/doc/refman/5.0/en/create-trigger.html

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