gpt4 book ai didi

MySQL触发数据拷贝

转载 作者:行者123 更新时间:2023-11-29 05:17:56 24 4
gpt4 key购买 nike

我有一个看起来像这样的触发器:

delimiter //
create trigger tracker after insert on Items for each row
begin

end; //
delimiter ;

我需要将插入列的idtypedate_created插入到另一个表中作为

INSERT INTO Tracker (table_id, type, date) VALUES ( ??? );

我不确定如何在触发器中获取这些数据字段。有人可以给我提示吗

最佳答案

您可以使用 NEW.column_name 获取触发器中的插入值

INSERT INTO Tracker (table_id, type, date)
VALUES ( NEW.id_col_traker,NEW.col,NEW.col );

Within the trigger body, the OLD and NEW keywords enable you to access columns in the rows affected by a trigger. OLD and NEW are MySQL extensions to triggers; they are not case sensitive.

Trigger Syntax and Examples

关于MySQL触发数据拷贝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30075137/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com