I am new to SQL Server
I have to create a trigger for update
CREATE TRIGGER on_update
ON [GP].[dbo].[TABLE1]
AFTER UPDATE
AS
DECLARE @PKCOL1 int
DECLARE @COL2 int
DECLARE @COL3 nvarchar(36)
DECLARE @COL4 nvarchar(36)
DECLARE @COL5 nvarchar(126)
DECLARE @COL6 datetime
DECLARE @COL7 datetime
BEGIN
SELECT @PKCOL1 = [COL-A],
@COL2 = [COL-B],
@COl3 = NULL,
@COL4 = [COL-C],
@COL5 = [COL-D],
@COL6 = [COL-E]
FROM INSERTED
UPDATE [dbo].[TABLE2]
SET [COL2] = @COL2,
[COL3] = @COL3,
[COL4] = @COL4,
[COL5] = @COL5
WHERE COL2 = @PKCOL1
I am getting syntax error for where contition.
Incorrect syntax near @PKCOL1 .
Can oany help me please...
ENDto close theBEGINprior to the select statement. No SQL Server handy, so I can't test. Also, SQL Server triggers fire once per statement, not once per row. Your will break if the update on [GP].[dbo].[TABLE1] is of more than one row. Instead of selecting one row's worth from inserted, use a single an update of dbo.table2 that reads from inserted and processes all the rows. Something like:update trgt, set .... from dbo.table2 trgt inner join inserted I on trgt.col2 = I.[COL-A]– Shannon Severance May 31 '11 at 22:29