I have 2 tables that are joined together by a field called user_id
If I bring up 2 fields from both tables in text boxes, what is the SQL syntex to update the two records.
I thought it would be
UPDATE table1,table2 SET field='$field',etc WHERE table1.user_id=table2.user_id
but its not working
any comments?
thanks