我想從數據庫B中的表中創建數據庫A中的表。我對查詢有一個想法。在數據庫A中,該表需要MerchantID,並且可以通過使用查詢(從Merchant_Location中選擇MerchantID where LocationID ='特定LocationID')從數據庫B中獲取它。Select select select語句
我需要一些在SQL Server 2005中這樣的查詢的語法幫助。謝謝你提前!
INSERT INTO A.dbo.Merchant_Category (MerchantCategoryID, MerchantID)
SELECT MerchantLocationCategoryID, (MerchantID from Merchant_Location where LocationID = @Location) as MerchantID FROM B.dbo.Merchant_Location_Category
我現在明白了。謝謝! :-) – Ram