如何诊断 MySQL 上触发器中的步骤
我有两个表:
- 源表
- 结果表
我的源表上有一个更新后触发器,它更新了一些内容结果表中的记录。问题是,我的触发器没有更新结果表,我想诊断我的触发器执行情况。
我尝试放置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用日志表。
您可以在触发器中插入日志。
Use a log table.
In your trigger you can insert the log.