Hi,
I don't know if this is even possible but any comment would be really appreciated. Two tables, products and breakf, trying to update a field in products (column_adjust) if id's in products and breakf matches. The following query gives me an error about syntax:
update products, breakf set products.column_adjust = "myvalue" where products.id = breakf.id;
I tried leaving the breafk in the update query but it says "unknown table breakf" like below:
update products set column_adjust = "myvalue" where products.id = breakf.id;
Help please 🙂