postgresql数据库基础

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgresql数据库基础相关的知识,希望对你有一定的参考价值。

创建只读账号

1.1以初始化账号登入

[[email protected] ~]# psql -U postgres

1.2创建用户

postgres=# create role develop with login password ‘123456‘;  

CREATE ROLE

postgres=# select usename from pg_user;

 usename  

----------

 postgres

 test

 develop

(3 rows)


1.3切换数据库

\c current_product

1.4赋予只读权限

current_product=# grant select on all tables in schema public to develop;

GRANT

1.5切换到develop用户

current_product=# \c - develop

You are now connected to database "current_product" as user "develop".

1.6检测是否拥有只读权限

current_product=> select * from test;    

 id 

----

(0 rows)



本文出自 “青春邓勇” 博客,请务必保留此出处http://dengyong.blog.51cto.com/8409869/1888850

以上是关于postgresql数据库基础的主要内容,如果未能解决你的问题,请参考以下文章

PostgreSQL在Linux和Windows安装和入门基础教程

PostgreSQL基础操作

postgresql的安装与基础语法

postgresql的安装与基础语法

PostgreSQL 基础知识:psql 提示和技巧

分布式数据库理论基础 & PostgreSQL 分布式架构 | 周末送资料