Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 334 Bytes

postgres.md

File metadata and controls

26 lines (21 loc) · 334 Bytes

User Management

-- display users
\du

-- change user password
\password 'USER_NAME'

Database Management

-- create DB
CREATE DATABASE db_name;

-- drop database
DROP DATABASE db_name;

-- create user with password
CREATE USER some_username WITH PASSWORD 'password';

Navigation

-- quit CLI
\q