Database Client Development Tutorials, Guides & Insights
Unlock 1+ expert-curated database client tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your database client skills on DeveloperBreeze.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
Tutorial
How to view tables on a PostgreSQL database hosted on Heroku
After connecting, you can explore the database tables in the client’s interface. Most clients allow you to view tables directly and run SQL queries to list tables with:
SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';Nov 06, 2024
Read More