I have a table in the database called parts. The table looks like this and contains 3000 items:
Part_id part_name description weight price
1 book drama 11
5 pencil blue 5
There is no weight available for any item. But I just received an updated Excel file which has weights for each parts as well, the rest of data is the same as uploaded data in database. How can I update the weight column in the database?
An easy approach is to upload the new Excel file and forget the previous one available in the db but it is not very easy to upload because of the complexity of data and mapping needs to be done before data upload.
Thanks in advance.