vote up 0 vote down star

Hi all,

since my approach for a test query which I worked on in this question did not work out I'm trying something else now. Is there a wayto tell pg's random() function to getme only numbers between 1 and 10?

thx for your time

K

flag

3 Answers

vote up 1 vote down check

If by numbers between 1 and 10 you mean any float that is >= 1 and < 10, than, it's easy:

select random() * 9 + 1

This can be easily tested with:

# select min(i), max(i) from (
    select random() * 9 + 1 as i from generate_series(1,1000000)
) q;
       min       |       max
-----------------+------------------
 1.0000083274208 | 9.99999571684748
(1 row)

If you want integers, that are >= 1 and < 10, than it's simple:

select trunc(random() * 9 + 1)

And again, simple test:

# select min(i), max(i) from (
    select trunc(random() * 9 + 1) as i from generate_series(1,1000000)
) q;
 min | max
-----+-----
   1 |   9
(1 row)
link|flag
vote up 2 vote down

(trunc(random() * 10) % 10) + 1

link|flag
vote up -1 vote down

why don't you try

SELECT generate_series(1,10) ORDER BY random();

its much batter then other.

link|flag
It's actually much worse than other suggestions. If he was to get random from 1 to 1000000 you would create and sort 1000000 rows just to get single value? Even with 10 rows - you create 10 rows, sort them (n*log(n) operations), and get 1 row. That's a lot of work just to get a random number (which you get in here as well, bu calling (many times) to random() function. – depesz Sep 11 at 14:14

Your Answer

Get an OpenID
or

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