I have two tables in different databases on the same database server.
Both the databases have the same structure, but different data. Database1 (Test1) is the latest, and database2 (Test2) is an old copy of the database.
- Test1 has a table called
Employee
with 3000 records
- Test2 has a table called
Employee
with 1000 records
I need to update the table in Test1 from the same table in Test2 for a particular column called DeptID, because the values in the Employee table in the Test2 DB (the old one) have been updated. So I need to update the table in the new DB from the table in the old DB which has around 1000 rows.
In other words, I need to update the DeptID
column in the Employee
table in the Test1
DB with whatever values I have in the DeptID
column in the Employee
table in the Test2
DB.
I know I can restore the DB itself, but that's not a solution. I need to update the values in the Test1 database from the Test2 database.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…