I'd like to make a random string for use in session verification using postgresql. I know I can get a random number with "Select random()", so I tried "select md5(random())", but that doesn't work. How can I do this?
|
|
I'd suggest this simple solution: this is a quite simple function that returns random string of the given length:
and the usage:
example output:
|
|||
|
|
You can fix your initial attempt like this:
Much simpler than some of the other suggestions. :-) |
|||||
|
|
Building on Marcin's solution, you could do this to use an arbitrary alphabet (in this case, all 62 ascii alphanumeric characters):
|
||||
|
|
|
I was playing with postgresql recently, and I think I've found a little better solution, using only built in postgresql methods - no pl/pgsql. Only limitation is it currently generates only UPCASE strings, or numbers, or lower case strings.
second argument to generate_series method dictates length of the string. |
|||||
|
|
The INTEGER parameter defines the length of the string. Guaranteed to cover all 62 alphanum characters with equal probability (unlike some other solutions floating around on the Internet).
|
|||
|
|
|
Why is this tagged postgresql, but you your question states mysql? I would use pl/perl and use this module http://search.cpan.org/~steve/String-Random-0.20/Random.pm. Why do any extra work? |
|||
|
|
While not active by default, you could activate one of the core extensions:
Then your statment becomes a simple call to gen_salt() which generates a random string:
More information on extensions:
|
|||||||
|