特定の列の挿入または更新中に何らかの機能を実行するトリガーを作成しています。以下が更新で機能することはわかっていますが、挿入でも機能しますか?
IF UPDATE (MobilePhone)
BEGIN
SELECT @TeamId = TeamId FROM Inserted
END
特定の列の挿入または更新中に何らかの機能を実行するトリガーを作成しています。以下が更新で機能することはわかっていますが、挿入でも機能しますか?
IF UPDATE (MobilePhone)
BEGIN
SELECT @TeamId = TeamId FROM Inserted
END
MSDNのドキュメントからできるようです。
http://technet.microsoft.com/en-us/library/ms187326.aspx
Is the name of the column to test for either an INSERT or UPDATE action. Because the table name is specified in the ON clause of the trigger, do not include the table name before the column name. The column can be of any data type supported by SQL Server. However, computed columns cannot be used in this context.