Example:
User ID, Last Name, First Name, Start Date, End Date
001, Pudding , Chocolate , 10/01/2018, 10/30/2018
002, Cake , Carrot , 10/06/2018, 11/07/2018
003, Pie , Apple , 10/03/2018, 11/01/2018
And let's say I already have existing users for ID's 001, 002, 003 and I would like to update their Last Name, First Name, Start Date, End Date. The table is much too large to use a plugin such as "MySQL for Excel" because I can't narrow down my search (the example above is simplified)
I had thought to save this as a .csv, open it up in a text editor and try to find/replace text and form an UPDATE statement.. but I am not even sure how to do this exactly.
I would like each row to be turned into this, going off of first row:
UPDATE desserts
SET lname = "Pudding", fname = "Chocolate", startdate = "10/01/2018", enddate = "10/30/2018"
WHERE user_id = 001;
I would have several thousands of these that I can then run in the database.