我有一张表格,其中有两列uid
和parent_uid
。我希望插入时parent_uid
等于uid
。
uid
是我的主键,具有AUTO_INCREMENT。
我尝试按照以下步骤设置触发器
CREATE TRIGGER set_parent_uid BEFORE INSERT ON seller
FOR EACH ROW SET NEW.parent_uid = NEW.uid;
实际行为与预期的不同。确实,parent_uid
我得到 0 ,而 25diamonds.com 1 和 2 >和 24diamonds.com
uid,seller_url,website_url,name,country,discarded,parent_uid
1,25diamonds.com,25diamonds.com,25diamonds.com,NULL,0,0
2,24diamonds.com,24diamonds.com,24diamonds.com,NULL,0,0
似乎NEW.uid
不是访问它的正确方法。