update product_dim
set [expiry_date] = getdate() -1
from product_stg a, product_dim b
where a.product_code = b.product_code
and ( a.product_name = b.product_name
or a.product_price = b.product_price
or a.product_category = b.product_category
)
and [expiry_date] = '9999-12-31'
我对在这里做什么几乎一无所知。我可能只是愚蠢,但我必须在两天内得到这份任务,还有很多事情要做。任何帮助将不胜感激。
答案 0 :(得分:0)
弄清楚了。更新expiry_date字段后,我没有插入新数据。我的大脑需要返工大声笑。