Confused about triggers: I have two types of records, 'L' library and 'N' normal. When an 'N' is updated or inserted, I need to update the corresponding 'L'. Updates to 'L' records shouldn't update themselves. This code doesn't let an update succeed. Why?
ALTER trigger updateProductLibrary
on Product
after update as
BEGIN
-- either deleted (old) or inserted (new)
declare @counter int, @insertedType char(1)
set @insertedType = 'Z'
select @insertedType = i.type
from inserted i
if( @insertedType = 'N')
begin
select @counter = count(*)
from product p join inserted i on
p.sku = i.sku and
p.type = 'L' -- for library
if( @counter > 0) -- update
BEGIN
update p set name = i.name
from product p join inserted i on
p.sku = i.sku and
p.type = 'L'
END
ELSE -- insert
BEGIN
insert into product (sku, name, type)
select i.sku, i.name, 'L'
from inserted i
END
END
END