Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
説明の間違いを含む製品テーブルがあるとします。測定単位が「grams」ではなく「garms」とつづりが間違っていました。タイプ 1 - SCD 手法を表すクエリ ステートメントを使用して、これをどのように実装しますか。
この質問に対する答えを得ることができました。私はこのようなものを探していました:
Begin SELECT all from Product Table UPDATE Product Table SET [Product Unit of Measure] = “grams” WHERE [Product Unit of Measure] = “garms” End