SQLに新しい経験がある方は、SQLテーブルの多くのカラムをより高速に更新する方法をお探しの場合
多分配列または各要素を使用します。
update ItemDynamic
set price = SnapShotPrice
where SnapShotPrice <> Price
update ItemDynamic
Set PriceLevelA = SnapShotPriceA
where snapshotpriceA <> PricelevelA
update ItemDynamic
Set PriceLevelB = SnapshotpriceB
where snapshotpriceB <> PricelevelB
update ItemDynamic
Set PriceLevelC = SnapshotpriceC
where snapshotpriceC <> PricelevelC
インデックスと呼ばれます。 SSMSには、追加するインデックスを提案できるクエリアナライザが付属しています。あなたはそれを使うべきです。 – Will
更新ステートメント3と4は同じように見えます。これは正しいです? –