Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 284 Bytes

postgres_commands.md

File metadata and controls

8 lines (7 loc) · 284 Bytes

###postgres commands

  • list databases: \list or \l
  • create database:create database <dbName>;
  • create user: create user <userName> with password 'password';
  • list user: \du
  • set privilages: GRANT ALL PRIVILAGES ON DATABASE <dbName> TO user;