Answers for "how to select one column from another db table and update into another db using sql"

SQL
2

sql update from different table

-- SQL Server
UPDATE Sales_Import
SET Sales_Import.AccountNumber = RAN.AccountNumber
FROM Sales_Import SI
INNER JOIN RetrieveAccountNumber RAN
ON SI.LeadID = RAN.LeadID;
-- MySQL & MariaDB
UPDATE Sales_Import SI, RetrieveAccountNumber RAN
SET SI.AccountNumber = RAN.AccountNumber
WHERE SI.LeadID = RAN.LeadID;
Posted by: Guest on May-13-2020

Code answers related to "how to select one column from another db table and update into another db using sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language