25.蛤蟆笔记go语言——PostgrelSQL数据库使用
下载地址:https://www.postgresql.org/download/
此处以WINDOWS版本为例。
下载后双击安装。
postgresql-9.5.3-1-windows-x64.exe
安装过程输入密码和端口号。
使用
安装完毕后,有一个phAdmin图形化工具如下图1:
命令行管理
安装完毕后,自带命令行管理,如下图2
创建数据库 test:
#create database test;
切换数据
#\c test
链接到数据库test
创建用户:
create user astaxie with password 'astaxie';
登录数据库,赋值:
grant all privileges on userinfo toastaxie;
有疑问加站长微信联系(非本文作者)