DeveloperBreeze

Psql Development Tutorials, Guides & Insights

Unlock 1+ expert-curated psql tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your psql skills on DeveloperBreeze.

How to view tables on a PostgreSQL database hosted on Heroku

Tutorial November 06, 2024

   SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';

Using either method will allow you to view and interact with your PostgreSQL tables on Heroku.