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

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?

share|improve this question
Another solution can be found here stackoverflow.com/a/13675441/398670 – Craig Ringer Dec 3 '12 at 0:24

8 Answers

up vote 13 down vote accepted

I'd suggest this simple solution:

this is a quite simple function that returns random string of the given length:

create or replace function random_string(length integer) returns text as 
$$
declare
  chars text[] := '{0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z}';
  result text := '';
  i integer := 0;
begin
  if length < 0 then
    raise exception 'Given length cannot be less than 0';
  end if;
  for i in 1..length loop
    result := result || chars[1+random()*(array_length(chars, 1)-1)];
  end loop;
  return result;
end;
$$ language plpgsql;

and the usage:

select random_string(15);

example output:

select random_string(15) from generate_series(1,15);

  random_string  
-----------------
 5emZKMYUB9C2vT6
 3i4JfnKraWduR0J
 R5xEfIZEllNynJR
 tMAxfql0iMWMIxM
 aPSYd7pDLcyibl2
 3fPDd54P5llb84Z
 VeywDb53oQfn9GZ
 BJGaXtfaIkN4NV8
 w1mvxzX33NTiBby
 knI1Opt4QDonHCJ
 P9KC5IBcLE0owBQ
 vvEEwc4qfV4VJLg
 ckpwwuG8YbMYQJi
 rFf6TchXTO3XsLs
 axdQvaLBitm6SDP
(15 rows)
share|improve this answer
This solution uses the values at either end of the chars array - 0 and z - half as often as the rest. For a more even distribution of characters, I replaced chars[1+random()*(array_length(chars, 1)-1)] with chars[ceil(61 * random())] – PreciousBodilyFluids Mar 15 at 4:08

You can fix your initial attempt like this:

SELECT md5(random()::text);

Much simpler than some of the other suggestions. :-)

share|improve this answer
3  
Note that this returns strings over the "hex digits alphabet" {0..9,a..f} only. May not be sufficient -- depends on what you want to do with them. – user465139 Jul 13 '12 at 13:40

Building on Marcin's solution, you could do this to use an arbitrary alphabet (in this case, all 62 ascii alphanumeric characters):

select array_to_string(array(select substr('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789', trunc(random() * 61)::integer + 1, 1) from generate_series(1, 12)), '');

share|improve this answer

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.

template1=> SELECT array_to_string(ARRAY(SELECT chr((65 + round(random() * 25)) :: integer) FROM generate_series(1,12)), '');
 array_to_string 
-----------------
 TFBEGODDVTDM

template1=> SELECT array_to_string(ARRAY(SELECT chr((48 + round(random() * 9)) :: integer) FROM generate_series(1,12)), '');
 array_to_string 
-----------------
 868778103681

second argument to generate_series method dictates length of the string.

share|improve this answer
2  
I like this, but found when I used it an an UPDATE statement, all rows were set to the same random password instead of unique passwords. I solved this by adding the primary key ID into the formula. I add it to the random value and the subtract it again. The randomness is not changed, but PostgreSQL is tricked into re-computing the values for each row. Here's an example, using a primary key name of "my_id": array_to_string(ARRAY(SELECT chr((65 + round((random()+my_id-my) * 25)) :: integer) FROM generate_series(1,8)), '') – Mark Stosberg Nov 18 '11 at 19:53

select * from md5(to_char(random(), '0.9999999999999999'));

share|improve this answer

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).

CREATE OR REPLACE FUNCTION random_string(INTEGER)
RETURNS TEXT AS
$BODY$
SELECT array_to_string(
    ARRAY (
        SELECT substring(
            '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
            FROM (ceil(random()*62))::int FOR 1
        )
        FROM generate_series(1, $1)
    ), 
    ''
)
$BODY$
LANGUAGE sql VOLATILE;
share|improve this answer

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?

share|improve this answer
Actually you will need to use PL/PerlU (untrusted) in order to require the random module. Check the docs out on what this means postgresql.org/docs/9.0/interactive/plperl-trusted.html – JustBob Oct 19 '10 at 17:23

While not active by default, you could activate one of the core extensions:

CREATE EXTENSION IF NOT EXISTS pgcrypto;

Then your statment becomes a simple call to gen_salt() which generates a random string:

select gen_salt('md5') from generate_series(1,4);

 gen_salt
-----------
$1$M.QRlF4U
$1$cv7bNJDM
$1$av34779p
$1$ZQkrCXHD

More information on extensions:

share|improve this answer
The generated salts seem too sequential to be really random, isn't it? – Le Droid yesterday
Are you referring to the $1$? That is a hash type identifier (md5==1), the rest is the randomized value. – user1961413 yesterday
Yes, that was my erroneous interpretation, thanks for the precision. – Le Droid 21 hours ago

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.