1. 登陆官网Community DL Page进行下载
2. 按照安装包指引进行安装,记得设置数据库密码
可以通过三种方式创建数据库:
1. 进入postgres的bin目录,键入psql -h localhost -p 5432 -U postgres,连接pg数据库,然后通过psql的create database [name];命令创建新数据库
2. 进入postgres的bin目录,键入createdb -h localhost -p 5432 -U postgres runoobdb,直接创建数据库
3. 通过pgadmin客户端创建
参考链接: cloud.tencent.com/developer/article/1878817
后续模式Schema,表格Table等创建可以参考:
runoob.com/postgresql/postgresql-schema.html