CREATE
TRIGGER 触发器名称
ON
表
AFTER INSERT
AS
declare @ID nvarchar(20)
--存货编号
declare @width numeric(10,2)
--宽度
declare @Count numeric(10,2)
--应领数量
declare @Length numeric(10,2)
--长度
select @ID=存货编号,@Count=应领数量,@width=宽度 from INSERTED
set @Length = @Count*1000/@width
update 表 set 长度 = @Length where 存货编号 = @ID
GO
但是我比较赞同 2楼 的方式。用触发器显得有点过了。。。