溫馨提示×

怎么在postgresql中創(chuàng)建數(shù)據(jù)庫

養(yǎng)魚的貓咪
156
2021-04-27 08:14:10
欄目: 云計(jì)算

在postgresql中創(chuàng)建數(shù)據(jù)庫的方法:1.啟動postgresql服務(wù);2.登錄postgresql數(shù)據(jù)庫;3.使用createdb命令創(chuàng)建;

怎么在postgresql中創(chuàng)建數(shù)據(jù)庫

具體步驟如下:

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

0