0
我有兩個SQL Server表:ORDERS
和DELIVERIES
。SQL腳本:更新列上的另一個表上的樞軸ID
我想更新ORDERS
表,其值爲DELIVERIES
。 ORDERS
PK(OrderID
)對於兩個表都是通用的。此外,我想將操作限制在特定的CustomerID
(在ORDERS
之內)。
ORDERS
表:
OrderID | AccountID | AnalysisField1
DELIVERIES
表:
DeliveryID | OrderID | AddressName
我想從DELIVERIES.AddressName
值(由OrderID
鏈接),但只有其中ORDERS.AccountID = '12345'
請幫忙更新ORDERS.AnalysisField1
。 JM