Answers for "how to connect to a specific user postgresql"

SQL
1

how to give access to database in postgresql server to another user

GRANT permissions ON DATABASE dbname TO username;
Posted by: Guest on June-17-2020
0

How do I add a user to a postgres database? cli

psql=# grant all privileges on database <dbname> to <username>
Posted by: Guest on June-16-2020

Code answers related to "how to connect to a specific user postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language