You would have to extend the product table to add the new columns, and the extension table would need a unique index in common with the product table (probably products_id). Then you could do something like
UPDATE products AS p, extension_table AS et
SET p.column_name_1 = et.column_name_1,
p.column_name_2 = et.column_name_2,
...
p.column_name_n = et.column_name_n
WHERE p.products_id = et.products_id;


Reply With Quote

