再会,
我目前正在使用 posgresql 作为我的后端,我必须对我的表字段进行巨大的更改。我将使用两张桌子。
Table 1 Table 2
Old Index New Index
Product Id Old Index
Address Product Id
Contact no Address
Contact no
Email
我必须从表 2 中迁移表 1 中的所有详细信息。我为表 2 使用了不同的索引。为了让其他表能够识别我的旧索引,我使用了这个查询
Update Table 2 Set OldIndex =Table2.index
From(select Oldindex from Table 1)as new,Table 1
Where Table1.Productid =Table2.Productid
我有其他与表 1 相关的表,所以我的目标是用新索引替换旧索引,并希望其他表也能看到更改。但我不确定我做对了。我的查询很慢,如果我做错了,我希望有人可以测试我的查询并指出正确的方向,提前谢谢你。