Postgresql Create Role With Login Code Example


Example 1: how to add user to role postgresql

CREATE ROLE joe LOGIN INHERIT; CREATE ROLE admin NOINHERIT; CREATE ROLE wheel NOINHERIT; GRANT admin TO joe; GRANT wheel TO admin;

Example 2: postgresql create user roles

CREATE ROLE name [ WITH ADMIN role_name ]

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy