I need to update fields in t1. Is it possible with this code?
Code: Select all
UPDATE t1, t2 SET t1.field1 = value WHERE t1.ID = t2.FK AND t2.text = descriptionAm I clear?
Moderator: General Moderators
Code: Select all
UPDATE t1, t2 SET t1.field1 = value WHERE t1.ID = t2.FK AND t2.text = descriptionCode: Select all
UPDATE t1 SET t1.field1 = value WHERE t1.ID = t2.FK AND t2.text = description