PostgreSQL Cheatsheet
-- CONNECTING TO THE DATABASE
\c database_name
-- Connects to a specific database.
-- LIST ALL DATABASES
\l
-- Lists all databases available in the PostgreSQL server.
-- LIST ALL TABLES IN THE CURRENT DATABASE
\dt
-- Lists all tables in the current...
omkareshwarp.hashnode.dev4 min read