在postgresql中创建数据库的方法:1.启动postgresql服务;2.登录postgresql数据库;3.使用createdb命令创建;
具体步骤如下:
1.首先,在命令行中启动postgresql服务;
net start postgresql
2.postgresql服务启动后,在命令行中登录到postgresql数据库;
psql -h -U
3.最后,登录到postgresql数据库后,在数据库中使用createdb命令即可新建一个数据库;
#在数据库中新建一个text库
createdb text
相关命令扩展:
1)执行\l指令即可查看所有已经存在的数据库
postgres=# \l
2)执行\c指令即可选择使用一个数据库
\c text