需求:做一个触发器,当A表的商铺ID 不存在B表的时候,自动把这条信息插入到B表,
B表多了一个字段:门店ID。如果为A门店 ,门店ID 1001.如果为B门店 ,门店ID 1002.就两个店可以写死。请教一下,应该怎么写
create trigger Tri_表名_Ins
on 表名
for inserted
as
BEGIN
if not exists(select * from 表2 inner join inserted on 表2.商铺ID=inserted.商铺ID) begin
insert into 表2 SELECT '' [门店ID],* FROM inserted
end
END