如何诊断 MySQL 上触发器中的步骤

发布于 2024-08-14 05:56:48 字数 403 浏览 8 评论 0原文

我有两个表:

  • 结果

我的表上有一个更新后触发器,它更新了一些内容结果表中的记录。问题是,我的触发器没有更新结果表,我想诊断我的触发器执行情况。

我尝试放置 select 语句来查看变量值,但触发器中不允许选择。我想在 Microsoft SQL Management Studio 中使用类似于 PRINT 的东西,它会在 GUI 中输出一些值,但我正在使用的 MySQL 或 Toad 工具上似乎不存在此命令。

那么我该如何诊断我的触发因素?你是如何做到的?

I have two tables:

  • source table
  • result table

I have an after update trigger on my source table which updates some records in result table. the problem is, my trigger is not updating result table and I would like to diagnose my trigger execution.

I tried putting select statements to see variable values but selects are not allowed in a trigger. I would like to use something similar to PRINT in Microsoft SQL Management Studio that would output some values in GUI but this command doesn't seem to exist on MySQL or Toad tool that I'm using.

How am I suppose to diagnose my trigger then? How do you do it?

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

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

发布评论

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

评论(1

风为裳 2024-08-21 05:56:48

使用日志表。

CREATE TABLE log (t datetime, comment varchar(255));

您可以在触发器中插入日志。

INSERT INTO log 
SELECT now(), concat('debug comment ', @your_variable);

Use a log table.

CREATE TABLE log (t datetime, comment varchar(255));

In your trigger you can insert the log.

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