I apologize for the lack of info. I had hoped my statement would have a blaring mistake that I just didn't see..
I am getting a syntax error - I tried running with a comma as you siggested before I posted and received the following error:
mysql> UPDATE part_numbers_master, part_numbers
-> SET part_numbers_master.table_id=part_numbers.table_ids
-> WHERE part_numbers_master.pn_full=part_numbers.pn_full
-> AND part_numbers_master.table_ids='0';
ERROR 1064: You have an error in your SQL syntax near ' part_numbers
SET part_numbers_master.table_id=part_numbers.table_ids' at line 1
I don't see the syntax error there - do you?
Could it be that we're saying update two tables, when only one table's values are being modified?
What else could cause a syntax error?