MySQL 中的存储过程与触发器

发布于 2024-10-02 09:46:08 字数 32 浏览 1 评论 0原文

在 MySQL 世界中,存储过程与触发器有何不同?

How are STORED PROCEDURES different than TRIGGERS in the MySQL world ?

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

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

发布评论

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

评论(2

情域 2024-10-09 09:46:08

存储过程存储为预编译代码(存储例程),并由程序员在想要触发的任何地方调用。存储过程可以返回值。 关于过程和函数。

触发器是触发的命名数据库对象当插入、删除、更新(或其他事件)发生时自动执行,不能有显式调用。触发器无法返回任何数据。
关于触发器。

您可以在触发器的代码中使用过程。

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.

梦回旧景 2024-10-09 09:46:08

触发器是一种存储过程,但它基于表上的事件运行,而不仅仅是一组重复执行的指令。

触发器定义为在对关联表执行 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.

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