使用触发器在另一个 table 上插入数据后更新 table

Update a table after insert data on another table using trigger

当插入行到 table_a 时,我必须更新 table_b 中的列。

查询

CREATE TRIGGER trg_Update
ON table_a FOR INSERT
AS 
UPDATE table_b
SET Sold_Qty=inserted.qty
WHERE OrdNo=inserted.OrdNo;

我收到以下错误。

Msg 4104, Level 16, State 1, Procedure trg_Update, Line 6
The multi-part identifier "inserted.OrdNo" could not be bound.

尝试用这个代替 UPDATE 查询:

UPDATE table_b
SET Sold_Qty=inserted.qty
FROM table_b b
INNER JOIN inserted ON b.OrdNo=inserted.OrdNo;