I am trying to update a table based on a join with another table...
update supplement
set supplement.supp_desc = table2.description, supplement.supp_ingred = table2.ingredients, supplement.supp_directions = table2.direction
(select * FROM supplement, table2 where supplement.brand_id = table2.brandid and
supplement.supp_name = table2.item and supplement.supp_size = table2.size)
Can anyone help me with the proper syntax? I keep getting errors. Thanks for any help! - Warren
update supplement
set supplement.supp_desc = table2.description, supplement.supp_ingred = table2.ingredients, supplement.supp_directions = table2.direction
(select * FROM supplement, table2 where supplement.brand_id = table2.brandid and
supplement.supp_name = table2.item and supplement.supp_size = table2.size)
Can anyone help me with the proper syntax? I keep getting errors. Thanks for any help! - Warren