次の挿入トリガーがあります。これは基本的に、挿入から QA/QC テーブルに重複行を書き込みます (IAW ビジネス要件)。
INSERT dbo.TBL_LOCATIONS(
Column1, Column2
)
SELECT
a.Column1, a.Column2
From
(
SELECT
Column1, Column2
FROM inserted
) AS a
end
GO
私がやろうとしているのは、挿入テーブルに挿入される可能性のある値の論理テストに基づいて、値の範囲を入力[Column1]
することです。"、次に "Some other string" を,if is "3" に挿入し、次に "Yet another string" を...に挿入します。tbl_locations
[a.Column1]
tbl_locations.Column1
[a.Column1]
tbl_locations.Column1
[a.Column1]
tbl_locations.Column1