Skip to content

Latest commit

History

History
18 lines (13 loc) 路 237 Bytes

common-commands.md

File metadata and controls

18 lines (13 loc) 路 237 Bytes

PostgreSQL Common commands

# login
psql -d database -U  user -W
psql -h host -d database -U user -W
psql -U user -h host "dbname=db sslmode=require"

# list of dbs
\l

# switch db
\c dbname username

# list of tables
\dt