Hi all,
I have a spreadsheet with UPC codes and vendor product numbers, and I'm trying to run a script to update my database with that information. The UPC code is in the Item table while the Vendor product # is in the SupplierList table...thought I would be able to do a Join to link these and update the information. Maybe I thought it was too simple...?
Code:update supplierlist left join supplierlist on supplierlist.itemid=item.id set supplier.reordernumber='1234' where item.itemlookupcode='test'









Bookmarks