list all tables in postgres code example
Example 1: get all tables postgres
SELECT * FROM pg_catalog.pg_tables;
Example 2: show table postgres command
PostgreSQL show tables command
\dt
Example 3: get all tables postgres
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;
Example 4: show all tables postgres
\dt
# show list of tables in postgres
Example 5: show details of table postgres
postgres=# \d tablename;