I have a database with 5 columns plus an Unique Key id. The columns are id (PRIMARY KEY), customer_id. state (ENUM of all 50 US states), type (ENUM of various healthcare practitioner license types), number (varchar(18) license number that is associated with the type), and expires (date for future use).
I accidentally deleted the number field for ONLY one type ( APRN, all other entries in the number column are intact). I last updated a wek ago and so if I can get the number fields from the type APRN back into the live database, I will save myself a great hassle of having to manually enter 5,500 number one at a time.
Statistics from phpMyAdmin are as follows:
Row statistics Format dynamic Collation utf8_general_ci Rows 124,470 Row length 21 B Row size 37 B Next autoindex 135,635 Creation Feb 08, 2022 at 09:42 AM Last update Feb 08, 2022 at 09:42 AM Last check Feb 08, 2022 at 09:50 AM
There would only be 8 total loss APRN number fields and I can reconstruct them manually looking them up on the Florida licensing website.
I CAN update every number field for EVERY type, but not sure how to get the backed up licenses table into the live database to run the UPDATE query on it for on type APRN or all types.
Any help would be most appreciated. Easiest and quickest is preferred.