postgres
Installation
SKILL.md
PostgreSQL
psql CLI Basics
Connect to a database:
psql -h localhost -p 5432 -U myuser -d mydb
psql "postgresql://myuser:mypass@localhost:5432/mydb?sslmode=require"
Common meta-commands inside psql:
Connect to a database:
psql -h localhost -p 5432 -U myuser -d mydb
psql "postgresql://myuser:mypass@localhost:5432/mydb?sslmode=require"
Common meta-commands inside psql: