The reason your statement "is not working" is because it is invalid MySQL syntax.
http://dev.mysql.com/doc/refman/5.5/en/update.html
Something like this should get you the result you want,
setting the code column in the aatest table to a value retrieved from the products_attributes table column:
UPDATE aatest
JOIN products_attributes
ON aatest.stock = products_attributes.attributes_stock
SET aatest.code = products_attributes.attributes_part_number
If you want to avoid the JOIN keyword, you can use the comma operator instead, and move the join predicate from the ON clause to the WHERE clause:
UPDATE aatest
, products_attributes
SET aatest.code = products_attributes.attributes_part_number
WHERE aatest.stock = products_attributes.attributes_stock
(But that comma-style of join syntax is old school, we favor the JOIN ... ON style.)
The way I get to a statement like that is to start with a SELECT statement, like this:
SELECT *
FROM aatest
JOIN products_attributes
ON aatest.stock = products_attributes.attributes_stock
(If it's a lot of columns, of course, I'll specify the columns of interest.)
The SELECT let's me see what rows are going to be updated, the current value of the code column (from aatest), and the new value that will be assigned.
Once I get that working, I can replace the 'SELECT * FROM' with the 'UPDATE' keyword, and then add a SET clause that specifies the column to be updated.
SET aatest.code = expr
(The quirky thing about the update syntax is that the SET clause needs to appear before the WHERE clause.)
aatest? – Mathieu Imbert Jan 21 at 21:34UPDATE aatest SET code = products_attributes.attributes_part_number WHERE products_attributes.attributes_stock = aatest.stock– Philip Whitehouse Jan 21 at 21:36products_attributestable. – spencer7593 Jan 21 at 21:45