Re: RANDOM function?

Поиск
Список
Период
Сортировка
От Einar Karttunen
Тема Re: RANDOM function?
Дата
Msg-id Pine.LNX.4.33.0107310847510.16977-100000@melkinpaasi.cs.Helsinki.FI
обсуждение исходный текст
Ответ на RANDOM function?  ("macky" <macky@edsamail.com>)
Список pgsql-novice
On Tue, 31 Jul 2001, macky wrote:

> can someone point me to the documentation of RANDOM() function....
>
> and can i insert RANDOM POSTIVE WHOLE NUMBERS...?
>
> create table table_name (key int4);
>
> insert into table_name(key) values(random());  <-- this gives me a value of
> 1 and 0 only..
>
random produces a float between 0 and 1. Just multiple it with the
interval you want and you will get the random number you want.

eg. to get a random number between 0 and 100 -> 100 * random().
between 32 and 40 -> (8 * random()) + 32.

- Einar Karttunen



В списке pgsql-novice по дате отправления:

Предыдущее
От: "macky"
Дата:
Сообщение: RANDOM function?
Следующее
От: "macky"
Дата:
Сообщение: Re: RANDOM function?