Answers for "how do i give permission to a database in postgresql"

SQL
0

grant permission in postgres

GRANT ALL PRIVILEGES ON DATABASE db_name TO username;
Posted by: Guest on October-31-2021
0

postgresql user permissions to database

sudo -u postgres psqlpostgres=# create database mydb;postgres=# create user myuser with encrypted password 'mypass';postgres=# grant all privileges on database mydb to myuser;
Posted by: Guest on September-22-2020

Code answers related to "how do i give permission to a database in postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language