MySQL 中的存储过程与触发器
在 MySQL 世界中,存储过程与触发器有何不同?
How are STORED PROCEDURES different than TRIGGERS in the MySQL world ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 MySQL 世界中,存储过程与触发器有何不同?
How are STORED PROCEDURES different than TRIGGERS in the MySQL world ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
存储过程存储为预编译代码(存储例程),并由程序员在想要触发的任何地方调用。存储过程可以返回值。 关于过程和函数。
触发器是触发的命名数据库对象当插入、删除、更新(或其他事件)发生时自动执行,不能有显式调用。触发器无法返回任何数据。
关于触发器。
您可以在触发器的代码中使用过程。
Stored procedures are stored as precompilated code (stored routine) and called by the programmer wherever it wants to fire. Stored procedure can return value(s). About procedures and functions.
Triggers are named database objects fired automatically when insert, delete, update (or other event) occurred, there can be no explicit invocation. Trigger can not return any data.
About triggers.
You can use procedures in trigger's code.
触发器是一种存储过程,但它基于表上的事件运行,而不仅仅是一组重复执行的指令。
触发器定义为在对关联表执行 INSERT、DELETE 或 UPDATE 语句时激活。
存储过程是一组编译成单个执行计划的 Transact-SQL 语句。
A trigger is a type of stored procedure, but it runs based off of an event on a table instead of just being a set of instructions to be executed repeatedly.
A trigger is defined to activate when an INSERT, DELETE, or UPDATE statement executes for the associated table.
A stored procedure is a group of Transact-SQL statements compiled into a single execution plan.