CREATE-ROLE
Name
CREATE ROLE
Description
The CREATE ROLE statement is used to create a role.
CREATE ROLE rol_name;
This statement creates a role with no specified permissions. You can grant permissions to the role by the GRANT command.
Example
-
Create a role
CREATE ROLE role1;
Keywords
CREATE, ROLE