I have a table called "partners" that contains a very large amount of contact information. After thoroughly cleaning the data from which I got it, I added a UUID column that would ideally like to populate the UUID via PHP $ generateobjectid = (uniqid ('AGF'));
Is there a simple script I could write that would go through the database and enter uniqid for each row at a time?
I would prefer to keep the uniqid generated via PHP so that I can control the prefix between the various entries.
source share