ランダムなINTがほしい
cast の場合はこれ
select cast(random()*100 as integer);
::int
を使ったキャストを使う場合はこんな感じ
floor(random() * 1000 + 1)::int;
参考資料
https://www.postgresql.jp/document/9.4/html/functions-math.html
cast の場合はこれ
select cast(random()*100 as integer);
::int
を使ったキャストを使う場合はこんな感じ
floor(random() * 1000 + 1)::int;
https://www.postgresql.jp/document/9.4/html/functions-math.html