在postgresql中創(chuàng)建數(shù)據(jù)庫的方法:1.啟動postgresql服務(wù);2.登錄postgresql數(shù)據(jù)庫;3.使用createdb命令創(chuàng)建;
具體步驟如下:
1.首先,在命令行中啟動postgresql服務(wù);
net start postgresql
2.postgresql服務(wù)啟動后,在命令行中登錄到postgresql數(shù)據(jù)庫;
psql -h -U
3.最后,登錄到postgresql數(shù)據(jù)庫后,在數(shù)據(jù)庫中使用createdb命令即可新建一個(gè)數(shù)據(jù)庫;
#在數(shù)據(jù)庫中新建一個(gè)text庫
createdb text
相關(guān)命令擴(kuò)展:
1)執(zhí)行\(zhòng)l指令即可查看所有已經(jīng)存在的數(shù)據(jù)庫
postgres=# \l
2)執(zhí)行\(zhòng)c指令即可選擇使用一個(gè)數(shù)據(jù)庫
\c text