I am trying to generate a 36 character random string in MySQL using:
UPDATE my_table SET entity_uid = substring(MD5(RAND()) FROM 1 FOR 36);
but the result is always a 32 character string. Is there a way to get a longer string?
|
I am trying to generate a 36 character random string in MySQL using:
but the result is always a 32 character string. Is there a way to get a longer string? |
|||
|
MD5 Returns the hash as a 32-character hexadecimal number. According to MySQL
|
|||||||||
|
|
One option would be to generate two MD5 hashes, concatenate them together (for a total of 64 hex characters), and then take the first 36 characters of that:
(NOTE: an MD5 hash is 128-bits; the MySQL MD5() function returns 32 hex characters.) |
|||||
|
MD5()is restricted to hexadecimal characters only, which isn't as "random" as it could be. – eggyal Jan 21 at 18:45