MySQL触发器获取列名

发布于 2024-12-09 12:33:37 字数 169 浏览 0 评论 0原文

我将每个更新或插入插入到日志表中。我正在使用触发器来执行此操作。

我的问题是,有没有办法知道哪一列已更新或插入信息以及如何检索该列名称**而不是值?

例如:

联系信息更改了用户的电话,因此我想在 Logs 中放入列的名称,而不是更改的值。

用户 |名称 |电话

I'm inserting every update or insertion into a log table. And I'm using triggers to perform this.

My question is, is there a way to know which column was updated or inserted information and how to retrieve that column name **not the value ?

For example:

Contact Information changed the phone of the user, so I want to put in Logs the name of the column, not the value changed.

User | Name | Phone

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

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

发布评论

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

评论(1

呆° 2024-12-16 12:33:37

没有(简单/内置)方法来获取已更新的列名称。您必须为每一列写一张支票。您可以使用准备 SQL 和 information_schema 表,但为每列编写检查会更干净、更快。

FOR EACH ROW BEGIN

SET @Cols = 'Updated Columns: ';

IF OLD.col1 <> NEW.col1 THEN
 @Cols = CONCAT(@Cols, 'col1, ');
END IF;

IF OLD.col2 <> NEW.col2 THEN
 @Cols = CONCAT(@Cols, 'col2, ');
END IF;

.....

END

There is no (simple/built-in) way to get the column name's that were updated. You will have to write a check for each column. You could muck around with prepare sql and the information_schema table, but writing checks for each column will be cleaner and faster.

FOR EACH ROW BEGIN

SET @Cols = 'Updated Columns: ';

IF OLD.col1 <> NEW.col1 THEN
 @Cols = CONCAT(@Cols, 'col1, ');
END IF;

IF OLD.col2 <> NEW.col2 THEN
 @Cols = CONCAT(@Cols, 'col2, ');
END IF;

.....

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