Navicat连接postgresql

一,postgreSQL下载安装

https://blog.csdn.net/qq_40323256/article/details/101699490

二,Navicat连接本地postgreSQL

Navicat连接postgresql_第1张图片Navicat连接postgresql_第2张图片

二,Navicat连接阿里云esc服务器中的postgreSQL

Navicat连接postgresql_第3张图片Navicat连接postgresql_第4张图片

Navicat连接postgresql_第5张图片

四,使用postgreSQL注意的地方

1,设置id自增

Navicat连接postgresql_第6张图片

 

2,表名和字段名全部设为小写!

mysql的字段名可以大小写混合,但是postgresql必须小写,否则会报错!

3,如果本地安装了postgis,并想在普通postgreSQL数据库中添加postgis模块,可以新建查询,用以下命令创建postgis

Navicat连接postgresql_第7张图片

CREATE EXTENSION postgis;

刷新数据库,如果出现了名为“spatial_ref_sys”的表,表示postgis模块加载成功

 

你可能感兴趣的:(PostgreSQL数据库)