Skip to content

Instantly share code, notes, and snippets.

View Jonalogy's full-sized avatar

Jonathan Tan Jonalogy

  • WatchTowr
  • Singapore
View GitHub Profile
@Jonalogy
Jonalogy / psql-basics.md
Created February 18, 2020 10:27
PSQL Basics

Connecting to PostgreSQL via CLI using PSQL

Ensure you have PSQL installed

Connecting to your DB

psql --host=localhost --port=5432 --username=developer --dbname=dummyDb --password

Once connected,