Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to copy a column's values to another similar table 1

Status
Not open for further replies.

hapax

Programmer
Nov 10, 2006
105
US
I have GamesNew table and a GamesOld table that are mostly copies of each other, although the GamesNew has some new rows that are not in GamesOld. In the GamesNew table there is a Description column that now has bad data.

For each GamesNew.GameId I want to update the Description column with the contents of the Description column of the corresponding GamesOld.GameId. I'm don't know how to do this.

Here is my attempt so far:

UPDATE GamesNew
SET GamesNew.Description = GamesOld.Description
WHERE GamesNew.GameID = GamesOld.GameID

But it throws an error: "The multi-part identifier "GamesOld.GameID" could not be bound." I think I need a FROM statement or something but I don't know where to add that to an UPDATE statement.
 
You were close.

Code:
UPDATE GamesNew
   SET GamesNew.Description = GamesOld.Description
  FROM GamesNew
       Inner Join GamesOld
          On GamesNew.GameID = GamesOld.GameID



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top