PostgreSQL安装与使用
PostgreSQL
是开源的关系型数据库。
一、安装
1.1 Mac OS
Mac OS
使用homebrew
安装,在shell
中输入brew search postgresql
,得到以下输出:
选择需要安装的版本即可,@
后为版本号,例如brew install postgresql@10
安装PostgreSQL 10
。
1.2 Linux
todo
1.3 Windows
todo
二、配置
2.1 Mac OS
如果安装的不是最新版本,则需要自行添加环境变量,以Postgre 10
为例,需要添加以下环境变量:
在添加完成后,在shell
中输入brew services
,检查PostgreSQL
是否运行,如果没有运行,需要运行PostgreSQL
服务。以Postgre 10
为例,shell
输入brew services start postgresql@10
即可启动服务。
2.2 Linux
todo
2.3 Windows
todo
三、使用
createdb <dbname>
创建数据库;psql <dbname>
进入数据库控制台;使用
\password <pass>
为postgreSQL
用户设置密码;使用
create user <username>
创建数据库用户;创建表,用法如下:
使用
grant all privileges on <tablename> to <username>
将表的所有权限都赋给某用户。todo...
Last updated
Was this helpful?