MySQL 中的插入、删除表(魔术表)
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们在 MySQL 中称为
NEW
和OLD
。NEW
是要插入的新记录或更新的数据。OLD
是被删除的记录,或者是更新前的旧数据。请参阅此处创建触发器的文档:http://dev. mysql.com/doc/refman/5.0/en/create-trigger.html
They are called
NEW
andOLD
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