windows安装解压版postgresql9.6

时间:2023-01-21 12:01:35

1、下载并解压postgresql到系统一个目录。

windows安装解压版postgresql9.6

2、初始化数据库。

初始化之前,需要设置一个存储数据库的文件夹data目录。这里设置在postgresql安装目录下。

进入安装目录,运行如下命令。

bin\initdb.exe -D E:\wangyu\soft\pgsql\data -E UTF8

windows安装解压版postgresql9.6

3、启动数据库。

根据初始化数据库的结果,我们可以知道通过如下命令启动postgresql数据库:

bin\pg_ctl.exe -D E:\wagnyu\soft\pgsql\data -l logfile start

启动成功,我们可以通过查看进程来验证postgresql是否运行,postgresql开启5432监听端口,可以查看是否有5432端口被进程占用。

windows安装解压版postgresql9.6

4、查看数据库。

windows安装解压版postgresql9.6

5、简单的使用数据库。

通过命令行进入postgresql  : bin\psql.exe 

查看数据库                          : \l

创建数据库                          : create database testdb

连接数据库                          : \c testdb

postgres=# \c testdb
WARNING: Console code page (437) differs from Windows code page (936)
         8-bit characters might not work correctly. See psql reference
         page "Notes for Windows users" for details.
You are now connected to database "testdb" as user "Administrator".

查看数据库中的表                : \dt

testdb-# \dt
 public | employees | table | postgres

新建表                                : create table employees(id int primary key not null,name text,age int,sallary real);

查看表结构                         : \d employees

testdb=# \d employees
 id      | integer | not null
 name    | text    |
 age     | integer |
 sallary | real    |

查询表数据                         : select * from employees

testdb=# select * from employees;
  1 | baba    |  30 |    1000
  2 | mama    |  29 |     100
  3 | baby    |   2 |      10