sqlor/docs/postgresql.md

21 lines
286 B
Markdown
Raw Normal View History

2021-01-03 12:36:27 +08:00
# POSTGRESQL
## create database
create database testdb;
## create user
create role guest with login;
## grat privileges
grant all privileges on database testdb to guest;
### grant table privileges
psql -d testdb
grant all privileges on all tables in schema public to guest;