TR_TRIBUTE_INSERT_BBNCTRIBUTEIDMAP

Definition

Copy


                CREATE trigger TR_TRIBUTE_INSERT_BBNCTRIBUTEIDMAP on dbo.TRIBUTE after insert not for replication
                as begin
                    insert into dbo.BBNCTRIBUTEIDMAP (TRIBUTEID)
                        select ID from inserted;
                end