How to Run PostgreSQL Using Docker
How to Connect to a PostgreSQL Database With a Python Serverless Function
How to Connect to a Heroku Postgres Database With pgAdmin Using Docker
How to Run PostgreSQL and pgAdmin Using Docker
brew services restart postgresql@14
psql postgres
# List of Roles
\du
# List of databases
\l
CREATE DATABASE DB_NAME;
# Select the db
\c DB_NAME
# Show tables
\dt
# Quit
\q