Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
concat several strings? – Shomz Jan 21 at 18:26
1  
What do you need this 36-character random string for? It may be worth noting that the range of MD5() is restricted to hexadecimal characters only, which isn't as "random" as it could be. – eggyal Jan 21 at 18:45

3 Answers

MD5 Returns the hash as a 32-character hexadecimal number.

According to MySQL

Calculates an MD5 128-bit checksum for the string. The value is returned as a string of 32 hex digits, or NULL if the argument was NULL. The return value can, for example, be used as a hash key. See the notes at the beginning of this section about storing hash values efficiently.

share|improve this answer
True - but not really an answer to the OP's question, is it? – Pekka 웃 Jan 21 at 18:28
Sorry for the noise, I found the answer: UPDATE my_table SET entity_uid = UUID(); which is a much easier way to do it. – Doahh Jan 21 at 18:29
1  
@Pekka웃 I think that answers why he cant get a string longer than 32 bits using the code he provided. But yes you are right it does not provide an alternate – Ø Hanky Panky Ø Jan 21 at 18:31

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:

SELECT SUBSTR(CONCAT(MD5(RAND()),MD5(RAND())),1,36)

(NOTE: an MD5 hash is 128-bits; the MySQL MD5() function returns 32 hex characters.)

share|improve this answer
I tried to do something like that but got the wrong syntax so thanks for posting that solution. – Doahh Jan 21 at 18:32
NOTE: The string returned by the UUID() function is not "random". The design goal of the UUID() function is to return a UNIQUE value, not a RANDOM value. – spencer7593 Jan 21 at 18:36
up vote 0 down vote accepted
UPDATE my_table SET entity_uid = UUID();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.