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
|
|
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 thx for your time K
|
||
|
|
|
|
If by numbers between 1 and 10 you mean any float that is >= 1 and < 10, than, it's easy:
This can be easily tested with:
If you want integers, that are >= 1 and < 10, than it's simple:
And again, simple test:
|
||
|
|
|
|
(trunc(random() * 10) % 10) + 1 |
||
|
|
|
|
why don't you try SELECT generate_series(1,10) ORDER BY random(); its much batter then other. |
|||
|