在postgresql中新建表格的方法:1.啟動postgresql服務;2.登錄postgresql數(shù)據(jù)庫;3.使用數(shù)據(jù)庫;4.執(zhí)行命令新建表格;
具體步驟如下:
1.首先,在命令行中啟動postgresql服務;
net start postgresql
2.postgresql服務啟動后,在命令行中登錄到postgresql數(shù)據(jù)庫;
psql -h -U
3.登錄到postgresql數(shù)據(jù)庫后,在postgresql選擇一個數(shù)據(jù)庫并使用;
\c text
4.最后,進入到數(shù)據(jù)庫后,在數(shù)據(jù)庫中執(zhí)行以下命令即可在數(shù)據(jù)庫中新建一個表格;
#在數(shù)據(jù)庫中新建一個prefer表格
create table prefer;
相關命令擴展:
1)使用\d命令即可查看數(shù)據(jù)庫中所有存在的表格
text=# \d
2)使用\d + 表名即可查看具體的表格信息
text=# \d prefer