在postgresql中輸出隨機數的方法:1.啟動postgresql服務;2.登錄postgresql數據庫;3.使用數據庫;4.在數據庫新建表;5.使用random函數輸出;
具體步驟如下:
1.首先,在命令行中啟動postgresql服務;
net start postgresql
2.postgresql服務啟動后,在命令行中登錄到postgresql數據庫;
psql -h -U
3.登錄到postgresql數據庫后,在postgresql選擇一個數據庫并使用;
\c text
4.進入到數據庫后,在數據庫中新建一個數據表;
create table text;
5.最后,數據表創建好后,在數據表中使用random函數即可輸出隨機數;
1)輸出隨機數
#輸出10至25之間的隨機數
SELECT random()*(25-10)+10;
2)輸出隨機整數
#輸出10至25之間的隨機整數
SELECT floor(random()*(25-10)+10);