CREATE ROLE
Creates a role. After creating a role, use GRANT statements to specify role permissions.
Syntax
CREATE ROLE role
Parameters
role |
The name for the new role, where role conforms to conventions described in Identifiers. |
Privileges
Superuser
Examples
This example shows to create an empty role called roleA.
=> CREATE ROLE roleA; CREATE ROLE