I have a situation where I need to merge two product tables into one and need to keep both id fields. The Id field is the pk and an identity column. On insert I want to update the prodId to match the Id of the newly inserted row. This is what I have but I get an error saying that I cannot insert null into ProductId. What am I doing wrong?
ALTER TRIGGER SyncId
ON Product
FOR INSERT
AS
BEGIN
DECLARE @ID INT
SET @ID = (SELECT ID FROM Inserted)
UPDATE Product SET
ProdId = @ID
WHERE
Id = @ID
END
NULLinto ProductID? (eg: is there aNOT NULLconstraint)? – NullUserException♦ Sep 23 '11 at 0:48