{ “title”: “CREATE-ROLE”, “language”: “en” }

CREATE-ROLE

Name

CREATE ROLE

Description

The statement user creates a role

  CREATE ROLE rol_name;

This statement creates an unprivileged role, which can be subsequently granted with the GRANT command.

Example

  1. Create a character

    CREATE ROLE role1;
    

Keywords

 CREATE, ROLE

Best Practice