Difference between revisions of "PostgreSQL: CREATE USER"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Line 15: Line 15:
 
  [[CREATE ROLE]]
 
  [[CREATE ROLE]]
  
  Assign a role with: <code>[[GRANT]]</code> command.
+
  Assign a role with <code>[[GRANT]]</code> command:
 +
GRANT [[your_defined_role]] TO your_username;
  
 
* [[List users]]: <code>[[\du]]</code>
 
* [[List users]]: <code>[[\du]]</code>

Revision as of 15:27, 2 March 2022

create user, creates a new user in PostgreSQL

Examples

  • create user your_username

Create a new user:

create user your_username;
Output:
CREATE ROLE

Create a new user and assign a password:

CREATE USER your_username WITH ENCRYPTED PASSWORD 'your_pass';
Output:
CREATE ROLE
Assign a role with GRANT command:
GRANT your_defined_role TO your_username;

Related terms

See also

Advertising: