慢慢改变尺寸类型1 - 访问

时间:2016-11-06 02:25:18

标签: sql ms-access scd

假设我有一个包含描述错误的产品表。测量单位拼错为“garms”而不是“gram”。如何用查询语句实现它来表示类型1 - SCD技术。

1 个答案:

答案 0 :(得分:0)

我设法得到了这个问题的答案。我在寻找这样的东西:

Begin

SELECT all from Product Table
UPDATE Product Table
   SET [Product Unit of Measure] = “grams”
   WHERE [Product Unit of Measure] = “garms”

End