Hi all,
I want to update the columns of one table to the columns of another table based on a common field.
This is what I tried but it's not working:
UPDATE TABLE1 SET TABLE1.NAME = TABLE2.NAME
WHERE TABLE1.ID=TABLE2.CARD_NUMBER
(ID and card number are unique, card numbers is a subset of id,
e.g. ID can be 1..10 and cardnumber 1,5,7)
Any ideas?
Thnx
I want to update the columns of one table to the columns of another table based on a common field.
This is what I tried but it's not working:
UPDATE TABLE1 SET TABLE1.NAME = TABLE2.NAME
WHERE TABLE1.ID=TABLE2.CARD_NUMBER
(ID and card number are unique, card numbers is a subset of id,
e.g. ID can be 1..10 and cardnumber 1,5,7)
Any ideas?
Thnx