I got lost when I wanted to create trigger using the pre-defined \"CREATE TRIGGER\" of SQL Server 2008 R2. Could you please give me a direct SQL statement that I can use to
CREATE TRIGGER YourTriggerName ON dbo.YourTable
FOR|AFTER INSERT, UPDATE, DELETE
AS
BEGIN
/*Put what ever you want here*/
UPDATE AnotherTable
SET SomeColumn = AnotherColumn
FROM inserted | deleted
END
GO