boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Create AFTER UPDATE triggers in SQL Server

Updated on     Kisan Patel

This example will show you how to create AFTER UPDATE triggers in SQL Server?

	CREATE TRIGGER UPDATETrigger
	ON [NORTHWND].[dbo].[Region]
		AFTER UPDATE
		AS
		BEGIN
		DECLARE @id int
		SELECT @id = [RegionID] FROM inserted
		INSERT INTO [Region] (RegionDescription)
		VALUES ('New')
	END

In the above query, we are creating a UPDATETrigger trigger that will execute only when Region record will get updated.

To trigger the above trigger, we need to fire an UPDATE statement on [NORTHWND].[dbo].[Region] table.

UpdateTrigger


SQL Server

Leave a Reply