Jump to content

Update multiple columns


Zojak_Quaguz

Recommended Posts

Table "people" has two columns: ID_NUMBER varchar(5), NAME varchar(20). Sample rows:

 

1 John

2 Steve

3 Suzy

4 Janet

 

Table "relationships" has two columns: PERSON1 varchar(20), PERSON2 varchar(20). Sample rows:

 

1 2

1 3

1 4

2 3

2 4

3 4

 

I want to replace the numbers in table "relationships" with the matching names from table "people".

 

I tried

 UPDATE people p, relationships r SET r.PERSON1 = p.NAME WHERE r.PERSON1 = p.ID_NUMBER;

 

which worked fine, then I tried to update the second column with

 UPDATE people p, relationships r SET r.PERSON2 = p.NAME WHERE r.PERSON2 = p.ID_NUMBER;

 

and nothing happened.

 

Thoughts?

Link to comment
https://forums.phpfreaks.com/topic/222274-update-multiple-columns/
Share on other sites

You would need to show us what result you are seeing in front of you for anyone to be able to help with it.

 

Best guess is some of your data values contain white-space/non-printing characters and the query does not match them.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.