在PostgreSQL中,可以使用CREATE DATABASE
命令创建数据库。
语法:
CREATE DATABASE database_name;
这里,database_name
是指定要创建的数据库的名称。
在您的系统中安装PostgreSQL后,打开开始菜单,然后单击pgAdmin。会得到一个这样的页面:
打开pgAdmin,第一次打开可能需要你输入密码,结果如下 -
右键单击PostgreSQL 9.6
并将PostgreSQL连接到本地主机服务器。
右键单击数据库(Databases),转到新数据库,将出现一个弹出框,如下图所示 -
然后键入您要的数据库名称,这里创建的数据库名称是:zyiz_db,如下图所示 -
点击保存(Save)就可以了。
创建新的数据库(zyiz_db)如下图所示 -
打开SQL Shell(psql),执行以下创建语句 -
create database testdb;
执行结果如下 -
查看数据库 -
postgres=# \l 数据库列表 名称 | 拥有者 | 字元编码 | 校对规则 | Ctype | 存取权限 -----------+----------+----------+--------------------------------+--------------------------------+----------------------- postgres | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | template0 | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | =c/postgres + | | | | | postgres=CTc/postgres template1 | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | =c/postgres + | | | | | postgres=CTc/postgres testdb | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | zyiz_db | postgres | UTF8 | Chinese (Simplified)_China.936 | Chinese (Simplified)_China.936 | (5 行记录) postgres=#
或者在 pgAdmin 的左侧中查看,结果如下 -