I know this can be done, but how? hee is the error i am receiving and also a example update statement:
I consistently get the following error:
SQL Exception error #1064, Resphonse from the database:
You have an error in your SQL syntax near 'person
set person.first_name = 'Bob',
phone.phone_no = '5551212'
w' at line 1
******** SQL Statement *****
UPDATE phone, person, address set
peson.first_name = 'John',
phone.phone_no = '1234567890'
address.state_cd = 'FL'
where person.person_id = phone.person_person_id
and person.person_id = address.person_person_id
and person.person_person_id = '4';
Any thoughts or suggestions on why this doesnt work?
I have the eqivalent in PHP code adn get the same error.