I\'m generating UUIDs using PHP, per the function found here
Now I want to store that in a MySQL database. What is the best/most efficient MySQL field format for st
This could be useful if you use binary(16) data type:
INSERT INTO table (UUID) VALUES (UNHEX(REPLACE(UUID(), "-","")))