If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
your syntax would work if you weren't trying to reference the cat2 table... i.e. with that syntax you can just reference fields in the products table using the WHERE clause.
try:
UPDATE `products`,`cat2`
SET products.cat=cat2.cat_desc
WHERE cat2.id = products.cat